aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cmd/upas/marshal/marshal.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/cmd/upas/marshal/marshal.c b/src/cmd/upas/marshal/marshal.c
index e5c75f7f..0ed3a8a6 100644
--- a/src/cmd/upas/marshal/marshal.c
+++ b/src/cmd/upas/marshal/marshal.c
@@ -629,20 +629,15 @@ body64(Biobuf *in, Biobuf *out)
Bprint(out, "\n");
for(;;){
n = Bread(in, buf, sizeof(buf));
- fprint(2,"read %d bytes\n",n);
if(n < 0)
fatal("input error");
if(n == 0)
break;
m = enc64(obuf, sizeof(obuf), buf, n);
- fprint(2,"encoded %d bytes\n",m);
- fprint(2,"writing to %x\n",out);
if((n=Bwrite(out, obuf, m)) < 0)
fatal("output error");
- fprint(2,"wrote %d bytes\n",n);
}
lastchar = '\n';
- fprint(2,"done with attachment\n");
}
// pass message to sendmail, make sure body starts with a newline