diff options
author | 2003-09-19 09:02:02 +0000 | |
---|---|---|
committer | 2003-09-19 09:02:02 +0000 | |
commit | 6db6a0ca44f118e82957dbc997f2eaf540d46cac (patch) | |
tree | e2d6c5e4c6a7a302b534d7991c76a7ea208686f7 | |
parent | whack getopt ? matching; jeffi@rcn.com (diff) | |
download | wireguard-openbsd-6db6a0ca44f118e82957dbc997f2eaf540d46cac.tar.xz wireguard-openbsd-6db6a0ca44f118e82957dbc997f2eaf540d46cac.zip |
buffer_dump only if PACKET_DEBUG is defined; Jedi/Sector One; pr 3471
-rw-r--r-- | usr.bin/ssh/packet.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c index b7bea462108..91f3ab7a3f1 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.109 2003/07/10 14:42:28 markus Exp $"); +RCSID("$OpenBSD: packet.c,v 1.110 2003/09/19 09:02:02 markus Exp $"); #include <sys/queue.h> @@ -1015,7 +1015,9 @@ packet_read_poll2(u_int32_t *seqnr_p) cp = buffer_ptr(&incoming_packet); packet_length = GET_32BIT(cp); if (packet_length < 1 + 4 || packet_length > 256 * 1024) { +#ifdef PACKET_DEBUG buffer_dump(&incoming_packet); +#endif packet_disconnect("Bad packet length %u.", packet_length); } DBG(debug("input: packet len %u", packet_length+4)); |