Removed some zmodem debug logging

This commit is contained in:
Michiel Broek
2006-05-23 19:27:37 +00:00
parent de27b8dac6
commit 6a4aac0f4a
3 changed files with 1 additions and 5 deletions

View File

@@ -722,8 +722,6 @@ void zputhex(int c)
{
static char digits[] = "0123456789abcdef";
Syslog('z', "zputhex: %02x", c);
BUFFER_BYTE(digits[(c&0xF0)>>4]);
BUFFER_BYTE(digits[(c)&0xF]);
}
@@ -779,7 +777,6 @@ int zgethex(void)
register int c;
c = zgeth1();
Syslog('z', "zgethex: %02x", c);
return c;
}

View File

@@ -284,7 +284,6 @@ int rzfile(void)
n = 20;
for (;;) {
Syslog('z', "rxbytes %ld", rxbytes);
stohdr(rxbytes);
zshhdr(ZRPOS, Txhdr);
nxthdr: