summaryrefslogtreecommitdiff
path: root/crypto/openssh/compat.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2002-10-29 10:16:02 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2002-10-29 10:16:02 +0000
commitf388f5ef2694c14a9c45d0b328d12bdc2c2e6d83 (patch)
tree404fa392fc6f2560e3c459fa20228c7031d0289d /crypto/openssh/compat.c
parentdd5f4be98b3363b221225e6fdd3f38ed2d9fcd96 (diff)
downloadsrc-test2-f388f5ef2694c14a9c45d0b328d12bdc2c2e6d83.tar.gz
src-test2-f388f5ef2694c14a9c45d0b328d12bdc2c2e6d83.zip
Notes
Diffstat (limited to 'crypto/openssh/compat.c')
-rw-r--r--crypto/openssh/compat.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/crypto/openssh/compat.c b/crypto/openssh/compat.c
index 406b47c25714..cf7870744494 100644
--- a/crypto/openssh/compat.c
+++ b/crypto/openssh/compat.c
@@ -23,7 +23,8 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: compat.c,v 1.63 2002/04/10 08:21:47 markus Exp $");
+RCSID("$OpenBSD: compat.c,v 1.65 2002/09/27 10:42:09 mickey Exp $");
+RCSID("$FreeBSD$");
#include "buffer.h"
#include "packet.h"
@@ -39,13 +40,13 @@ int datafellows = 0;
void
enable_compat20(void)
{
- verbose("Enabling compatibility mode for protocol 2.0");
+ debug("Enabling compatibility mode for protocol 2.0");
compat20 = 1;
}
void
enable_compat13(void)
{
- verbose("Enabling compatibility mode for protocol 1.3");
+ debug("Enabling compatibility mode for protocol 1.3");
compat13 = 1;
}
/* datafellows bug compatibility */
@@ -146,6 +147,8 @@ compat_datafellows(const char *version)
"OSU_1.5alpha3*", SSH_BUG_PASSWORDPAD },
{ "*SSH_Version_Mapper*",
SSH_BUG_SCANNER },
+ { "Probe-*",
+ SSH_BUG_PROBE },
{ NULL, 0 }
};