summaryrefslogtreecommitdiff
path: root/lib/ReadJob.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-10-29 17:12:20 +0000
committerPixel <Pixel>2001-10-29 17:12:20 +0000
commite5057005049b11af44cb804118f95370f03ab32c (patch)
tree3bba56312c3791f5046f37ee4411945d268760b7 /lib/ReadJob.cc
parenta259ec553a1d685ebb976ec34eaaf700d24ee0c4 (diff)
Going out, commiting...
Diffstat (limited to 'lib/ReadJob.cc')
-rw-r--r--lib/ReadJob.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ReadJob.cc b/lib/ReadJob.cc
index 9f4e084..bd63377 100644
--- a/lib/ReadJob.cc
+++ b/lib/ReadJob.cc
@@ -9,8 +9,8 @@ int ReadJob::Do() {
String buff;
while (!s.IsClosed()) {
- buff << s;
- buff >> d;
+ s >> buff;
+ d << buff;
if (buff == "") return TASK_DONE;
}
}