From b2abc6a4e8346d3be2dcbe1e01375450af3811ff Mon Sep 17 00:00:00 2001 From: bdrewery Date: Wed, 29 May 2013 00:18:12 +0000 Subject: [PATCH] MFH r250595: The HPN patch added a new BUG bit for SSH_BUG_LARGEWINDOW and the update to 6.1 added SSH_BUG_DYNAMIC_RPORT with the same value. Fix the HPN SSH_BUG_LARGEWINDOW bit so it is unique. git-svn-id: svn://svn.freebsd.org/base/stable/9@251087 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- crypto/openssh/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/openssh/compat.h b/crypto/openssh/compat.h index 6db85ead1..e5f46bc63 100644 --- a/crypto/openssh/compat.h +++ b/crypto/openssh/compat.h @@ -60,7 +60,7 @@ #define SSH_BUG_RFWD_ADDR 0x02000000 #define SSH_NEW_OPENSSH 0x04000000 #define SSH_BUG_DYNAMIC_RPORT 0x08000000 -#define SSH_BUG_LARGEWINDOW 0x08000000 +#define SSH_BUG_LARGEWINDOW 0x10000000 void enable_compat13(void); void enable_compat20(void); -- 2.45.0