diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-12 16:11:27 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-12 16:11:27 +0000 |
commit | 2f544822d4185aa75fe1a8c8543107769047779a (patch) | |
tree | f74c98a881f0262808639dd2c496ba8c1b9d080d /usr.bin/ssh/packet.c | |
parent | 52b6177fb31c8bf215064aebcdd7436f776c4267 (diff) |
do not log() packet_set_maxsize
Diffstat (limited to 'usr.bin/ssh/packet.c')
-rw-r--r-- | usr.bin/ssh/packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c index d7c90c74900..84f3b1ac6b3 100644 --- a/usr.bin/ssh/packet.c +++ b/usr.bin/ssh/packet.c @@ -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" @@ -1226,7 +1226,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; } |