From efa81decff4d8caa6e48e813e15e9713a378d8ac Mon Sep 17 00:00:00 2001 From: bdrewery Date: Mon, 13 May 2013 11:32:20 +0000 Subject: 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. Approved by: des MFC after: 2 weeks --- crypto/openssh/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto') diff --git a/crypto/openssh/compat.h b/crypto/openssh/compat.h index 6db85ea..e5f46bc 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); -- cgit v1.1