Removed some zmodem debug logging
This commit is contained in:
parent
de27b8dac6
commit
6a4aac0f4a
@ -14,7 +14,7 @@ v0.83.18 01-Apr-2006
|
|||||||
|
|
||||||
mbsebbs:
|
mbsebbs:
|
||||||
Fixed logging of wrong file after upload.
|
Fixed logging of wrong file after upload.
|
||||||
|
Removed some zmodem debug logging.
|
||||||
|
|
||||||
|
|
||||||
v0.83.17 27-Mar-2006 - 01-Apr-2006
|
v0.83.17 27-Mar-2006 - 01-Apr-2006
|
||||||
|
@ -722,8 +722,6 @@ void zputhex(int c)
|
|||||||
{
|
{
|
||||||
static char digits[] = "0123456789abcdef";
|
static char digits[] = "0123456789abcdef";
|
||||||
|
|
||||||
Syslog('z', "zputhex: %02x", c);
|
|
||||||
|
|
||||||
BUFFER_BYTE(digits[(c&0xF0)>>4]);
|
BUFFER_BYTE(digits[(c&0xF0)>>4]);
|
||||||
BUFFER_BYTE(digits[(c)&0xF]);
|
BUFFER_BYTE(digits[(c)&0xF]);
|
||||||
}
|
}
|
||||||
@ -779,7 +777,6 @@ int zgethex(void)
|
|||||||
register int c;
|
register int c;
|
||||||
|
|
||||||
c = zgeth1();
|
c = zgeth1();
|
||||||
Syslog('z', "zgethex: %02x", c);
|
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -284,7 +284,6 @@ int rzfile(void)
|
|||||||
n = 20;
|
n = 20;
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
Syslog('z', "rxbytes %ld", rxbytes);
|
|
||||||
stohdr(rxbytes);
|
stohdr(rxbytes);
|
||||||
zshhdr(ZRPOS, Txhdr);
|
zshhdr(ZRPOS, Txhdr);
|
||||||
nxthdr:
|
nxthdr:
|
||||||
|
Reference in New Issue
Block a user