summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/src/cmd/upas/imap4d/fetch.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/src/cmd/upas/imap4d/fetch.c b/sys/src/cmd/upas/imap4d/fetch.c
index d3e6ef3cc..78a76f912 100644
--- a/sys/src/cmd/upas/imap4d/fetch.c
+++ b/sys/src/cmd/upas/imap4d/fetch.c
@@ -183,8 +183,8 @@ void
fetchbody(Msg *m, Fetch *f)
{
char *s, *t, *e, buf[Bufsize + 2];
- uint n, start, stop, pos;
- int fd, nn;
+ uint start, stop, pos;
+ int fd, n, nn;
Pair p;
if(m == nil){
@@ -262,8 +262,7 @@ fetchbody(Msg *m, Fetch *f)
n = read(fd, &buf[1], n);
//ilog("read %ld at %d stop %ld\n", n, pos, stop);
if(n <= 0){
-ilog("must fill %ld bytes\n", stop - pos);
-fprint(2, "must fill %d bytes\n", stop - pos);
+//ilog("must fill %ld bytes\n", stop - pos);
fetchbodyfill(stop - pos);
break;
}