summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-12-07 01:24:58 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-12-07 01:24:58 +0000
commita14ee47f2eee3030cd784b93985a4de417a4b14c (patch)
treef82085150b06f63c80baf3cf748306afd34e33dd /packet.c
parentfc74af43ce005c9220bfb110a2fbf3a48c36c148 (diff)
20001207
- (bal) OpenSSH CVS updates: - markus@cvs.openbsd.org 2000/12/06 22:58:14 [compat.c compat.h packet.c] disable debug messages for ssh.com/f-secure 2.0.1x, 2.1.0
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet.c b/packet.c
index 8c9374fca..3e8ab2383 100644
--- a/packet.c
+++ b/packet.c
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: packet.c,v 1.38 2000/10/12 14:21:12 markus Exp $"); 40RCSID("$OpenBSD: packet.c,v 1.39 2000/12/06 22:58:15 markus Exp $");
41 41
42#include "xmalloc.h" 42#include "xmalloc.h"
43#include "buffer.h" 43#include "buffer.h"
@@ -1101,6 +1101,9 @@ packet_send_debug(const char *fmt,...)
1101 char buf[1024]; 1101 char buf[1024];
1102 va_list args; 1102 va_list args;
1103 1103
1104 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1105 return;
1106
1104 va_start(args, fmt); 1107 va_start(args, fmt);
1105 vsnprintf(buf, sizeof(buf), fmt, args); 1108 vsnprintf(buf, sizeof(buf), fmt, args);
1106 va_end(args); 1109 va_end(args);