diff options
Diffstat (limited to 'compat.c')
-rw-r--r-- | compat.c | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | RCSID("$OpenBSD: compat.c,v 1.66 2003/04/01 10:31:26 markus Exp $"); | 26 | RCSID("$OpenBSD: compat.c,v 1.69 2003/08/29 10:03:15 markus Exp $"); |
27 | 27 | ||
28 | #include "buffer.h" | 28 | #include "buffer.h" |
29 | #include "packet.h" | 29 | #include "packet.h" |
@@ -79,7 +79,11 @@ compat_datafellows(const char *version) | |||
79 | { "OpenSSH_2.5.3*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF}, | 79 | { "OpenSSH_2.5.3*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF}, |
80 | { "OpenSSH_2.*," | 80 | { "OpenSSH_2.*," |
81 | "OpenSSH_3.0*," | 81 | "OpenSSH_3.0*," |
82 | "OpenSSH_3.1*", SSH_BUG_EXTEOF}, | 82 | "OpenSSH_3.1*", SSH_BUG_EXTEOF|SSH_BUG_GSSAPI_BER}, |
83 | { "OpenSSH_3.2*," | ||
84 | "OpenSSH_3.3*," | ||
85 | "OpenSSH_3.4*," | ||
86 | "OpenSSH_3.5*", SSH_BUG_GSSAPI_BER}, | ||
83 | { "Sun_SSH_1.0*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF}, | 87 | { "Sun_SSH_1.0*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF}, |
84 | { "OpenSSH*", 0 }, | 88 | { "OpenSSH*", 0 }, |
85 | { "*MindTerm*", 0 }, | 89 | { "*MindTerm*", 0 }, |
@@ -131,12 +135,9 @@ compat_datafellows(const char *version) | |||
131 | "1.2.19*," | 135 | "1.2.19*," |
132 | "1.2.20*," | 136 | "1.2.20*," |
133 | "1.2.21*," | 137 | "1.2.21*," |
134 | "1.2.22*", SSH_BUG_IGNOREMSG|SSH_BUG_K5USER }, | 138 | "1.2.22*", SSH_BUG_IGNOREMSG }, |
135 | { "1.3.2*", /* F-Secure */ | 139 | { "1.3.2*", /* F-Secure */ |
136 | SSH_BUG_IGNOREMSG|SSH_BUG_K5USER }, | 140 | SSH_BUG_IGNOREMSG }, |
137 | { "1.2.1*," | ||
138 | "1.2.2*," | ||
139 | "1.2.3*", SSH_BUG_K5USER }, | ||
140 | { "*SSH Compatible Server*", /* Netscreen */ | 141 | { "*SSH Compatible Server*", /* Netscreen */ |
141 | SSH_BUG_PASSWORDPAD }, | 142 | SSH_BUG_PASSWORDPAD }, |
142 | { "*OSU_0*," | 143 | { "*OSU_0*," |
@@ -188,7 +189,7 @@ proto_spec(const char *spec) | |||
188 | ret |= SSH_PROTO_2; | 189 | ret |= SSH_PROTO_2; |
189 | break; | 190 | break; |
190 | default: | 191 | default: |
191 | log("ignoring bad proto spec: '%s'.", p); | 192 | logit("ignoring bad proto spec: '%s'.", p); |
192 | break; | 193 | break; |
193 | } | 194 | } |
194 | } | 195 | } |