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
diff --git a/packet.c b/packet.c
index 8c9374f..3e8ab23 100644
--- a/packet.c
+++ b/packet.c
@@ -37,7 +37,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: packet.c,v 1.38 2000/10/12 14:21:12 markus Exp $");
+RCSID("$OpenBSD: packet.c,v 1.39 2000/12/06 22:58:15 markus Exp $");
 
 #include "xmalloc.h"
 #include "buffer.h"
@@ -1101,6 +1101,9 @@
 	char buf[1024];
 	va_list args;
 
+	if (compat20 && (datafellows & SSH_BUG_DEBUG))
+		return;
+
 	va_start(args, fmt);
 	vsnprintf(buf, sizeof(buf), fmt, args);
 	va_end(args);