diff options
Diffstat (limited to 'lib/CopyJob.cc')
-rw-r--r-- | lib/CopyJob.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CopyJob.cc b/lib/CopyJob.cc index 6a35689..f1d3310 100644 --- a/lib/CopyJob.cc +++ b/lib/CopyJob.cc @@ -15,7 +15,7 @@ int CopyJob::Do() { r = s->read(buffer, MIN(COPY_BUFSIZ, tr)); } catch (IOAgain e) { - return TASK_WAITING_HANDLE; + return TASK_ON_HOLD; } current = 0; } @@ -24,7 +24,7 @@ int CopyJob::Do() { } catch (IOAgain e) { current = 1; - return TASK_WAITING_HANDLE; + return TASK_ON_HOLD; } cursiz += r; } |