[packet.c]
     do not log() packet_set_maxsize
This commit is contained in:
Ben Lindstrom 2001-06-13 04:39:18 +00:00
parent 49c126044d
commit 16d45b3952
2 changed files with 6 additions and 3 deletions

View File

@ -7,6 +7,9 @@
- markus@cvs.openbsd.org 2001/06/12 16:10:38
[session.c]
merge ssh1/ssh2 tty msg parse and alloc code
- markus@cvs.openbsd.org 2001/06/12 16:11:26
[packet.c]
do not log() packet_set_maxsize
20010612
- scp.c ID update (upstream synced vfsprintf() from us)
@ -5626,4 +5629,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1282 2001/06/13 04:37:36 mouring Exp $
$Id: ChangeLog,v 1.1283 2001/06/13 04:39:18 mouring Exp $

View File

@ -37,7 +37,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: packet.c,v 1.65 2001/06/07 20:23:04 markus Exp $");
RCSID("$OpenBSD: packet.c,v 1.66 2001/06/12 16:11:26 markus Exp $");
#include "xmalloc.h"
#include "buffer.h"
@ -1232,7 +1232,7 @@ packet_set_maxsize(int s)
log("packet_set_maxsize: bad size %d", s);
return -1;
}
log("packet_set_maxsize: setting to %d", s);
debug("packet_set_maxsize: setting to %d", s);
max_packet_size = s;
return s;
}