diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-05-13 11:32:20 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-05-13 11:32:20 +0000 |
commit | efa81decff4d8caa6e48e813e15e9713a378d8ac (patch) | |
tree | 998972174f3b051e2978b8d1c5aaf9cd1ff97550 /crypto | |
parent | 46ecea3da0fbc41dfd7a65b8eb6fb7e1e6ca3986 (diff) | |
download | FreeBSD-src-efa81decff4d8caa6e48e813e15e9713a378d8ac.zip FreeBSD-src-efa81decff4d8caa6e48e813e15e9713a378d8ac.tar.gz |
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
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |