tdelete debugging - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 7722ad0044128996c43af1e5bfe34e6fc7924007
(DIR) parent 22ba8d1fe44931e0f5bb0ed53cb9d8eb3d817aa9
(HTM) Author: rsc <devnull@localhost>
Date: Sun, 12 Feb 2006 16:43:32 +0000
delete debugging
Diffstat:
M src/cmd/upas/marshal/marshal.c | 5 -----
1 file changed, 0 insertions(+), 5 deletions(-)
---
(DIR) diff --git a/src/cmd/upas/marshal/marshal.c b/src/cmd/upas/marshal/marshal.c
t@@ -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