diff options
author | Damien Miller <djm@mindrot.org> | 2007-01-05 06:26:45 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2007-01-05 06:26:45 +0100 |
commit | 1ec462658edd8bfea2b5cab461bb9d513e29a151 (patch) | |
tree | df71243482d5164ffb8313c3cd5b97dbd96774c3 /compat.c | |
parent | - markus@cvs.openbsd.org 2006/12/11 21:25:46 (diff) | |
download | openssh-1ec462658edd8bfea2b5cab461bb9d513e29a151.tar.xz openssh-1ec462658edd8bfea2b5cab461bb9d513e29a151.zip |
- djm@cvs.openbsd.org 2006/12/12 03:58:42
[channels.c compat.c compat.h]
bz #1019: some ssh.com versions apparently can't cope with the
remote port forwarding bind_address being a hostname, so send
them an address for cases where they are not explicitly
specified (wildcard or localhost bind). reported by daveroth AT
acm.org; ok dtucker@ deraadt@
Diffstat (limited to 'compat.c')
-rw-r--r-- | compat.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: compat.c,v 1.76 2006/08/03 03:34:42 deraadt Exp $ */ +/* $OpenBSD: compat.c,v 1.77 2006/12/12 03:58:42 djm Exp $ */ /* * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. * @@ -133,7 +133,8 @@ compat_datafellows(const char *version) { "2.3.*", SSH_BUG_DEBUG|SSH_BUG_RSASIGMD5| SSH_BUG_FIRSTKEX }, { "2.4", SSH_OLD_SESSIONID }, /* Van Dyke */ - { "2.*", SSH_BUG_DEBUG|SSH_BUG_FIRSTKEX }, + { "2.*", SSH_BUG_DEBUG|SSH_BUG_FIRSTKEX| + SSH_BUG_RFWD_ADDR }, { "3.0.*", SSH_BUG_DEBUG }, { "3.0 SecureCRT*", SSH_OLD_SESSIONID }, { "1.7 SecureFX*", SSH_OLD_SESSIONID }, |