summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--compat.c9
-rw-r--r--compat.h9
3 files changed, 11 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index b6cc55337..55b2975ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
9 [sshconnect1.c sshd.c sshd_config sshd_config.5] 9 [sshconnect1.c sshd.c sshd_config sshd_config.5]
10 remove kerberos support from ssh1, since it has been replaced with GSSAPI; 10 remove kerberos support from ssh1, since it has been replaced with GSSAPI;
11 but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ... 11 but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
12 - markus@cvs.openbsd.org 2003/08/29 10:03:15
13 [compat.c compat.h]
14 SSH_BUG_K5USER is unused; ok henning@
12 15
1320030829 1620030829
14 - (bal) openbsd-compat/ clean up. Considate headers, add in Id on our 17 - (bal) openbsd-compat/ clean up. Considate headers, add in Id on our
@@ -924,4 +927,4 @@
924 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 927 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
925 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 928 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
926 929
927$Id: ChangeLog,v 1.2921 2003/09/02 12:51:17 djm Exp $ 930$Id: ChangeLog,v 1.2922 2003/09/02 12:52:00 djm Exp $
diff --git a/compat.c b/compat.c
index 6bd42a6f5..af1d14321 100644
--- a/compat.c
+++ b/compat.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: compat.c,v 1.68 2003/08/22 10:56:09 markus Exp $"); 26RCSID("$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"
@@ -135,12 +135,9 @@ compat_datafellows(const char *version)
135 "1.2.19*," 135 "1.2.19*,"
136 "1.2.20*," 136 "1.2.20*,"
137 "1.2.21*," 137 "1.2.21*,"
138 "1.2.22*", SSH_BUG_IGNOREMSG|SSH_BUG_K5USER }, 138 "1.2.22*", SSH_BUG_IGNOREMSG },
139 { "1.3.2*", /* F-Secure */ 139 { "1.3.2*", /* F-Secure */
140 SSH_BUG_IGNOREMSG|SSH_BUG_K5USER }, 140 SSH_BUG_IGNOREMSG },
141 { "1.2.1*,"
142 "1.2.2*,"
143 "1.2.3*", SSH_BUG_K5USER },
144 { "*SSH Compatible Server*", /* Netscreen */ 141 { "*SSH Compatible Server*", /* Netscreen */
145 SSH_BUG_PASSWORDPAD }, 142 SSH_BUG_PASSWORDPAD },
146 { "*OSU_0*," 143 { "*OSU_0*,"
diff --git a/compat.h b/compat.h
index a21e473c5..7a5004455 100644
--- a/compat.h
+++ b/compat.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: compat.h,v 1.35 2003/08/22 10:56:09 markus Exp $ */ 1/* $OpenBSD: compat.h,v 1.36 2003/08/29 10:03:15 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
@@ -53,10 +53,9 @@
53#define SSH_BUG_DERIVEKEY 0x00040000 53#define SSH_BUG_DERIVEKEY 0x00040000
54#define SSH_BUG_DUMMYCHAN 0x00100000 54#define SSH_BUG_DUMMYCHAN 0x00100000
55#define SSH_BUG_EXTEOF 0x00200000 55#define SSH_BUG_EXTEOF 0x00200000
56#define SSH_BUG_K5USER 0x00400000 56#define SSH_BUG_PROBE 0x00400000
57#define SSH_BUG_PROBE 0x00800000 57#define SSH_BUG_FIRSTKEX 0x00800000
58#define SSH_BUG_FIRSTKEX 0x01000000 58#define SSH_BUG_GSSAPI_BER 0x01000000
59#define SSH_BUG_GSSAPI_BER 0x02000000
60 59
61void enable_compat13(void); 60void enable_compat13(void);
62void enable_compat20(void); 61void enable_compat20(void);