From owner-freebsd-bugs@FreeBSD.ORG Sun Sep 23 14:10:15 2012 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E143D1065672 for ; Sun, 23 Sep 2012 14:10:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CD0BE8FC12 for ; Sun, 23 Sep 2012 14:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NEAFw7024696 for ; Sun, 23 Sep 2012 14:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NEAFbe024690; Sun, 23 Sep 2012 14:10:15 GMT (envelope-from gnats) Date: Sun, 23 Sep 2012 14:10:15 GMT Message-Id: <201209231410.q8NEAFbe024690@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "HIROSHI OOTA" Cc: Subject: Re: bin/171882: incorrect port fowarding with server allocated port X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: HIROSHI OOTA List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 14:10:16 -0000 The following reply was made to PR bin/171882; it has been noted by GNATS. From: "HIROSHI OOTA" To: bug-followup@freebsd.org, nil@mad.dog.cx Cc: Subject: Re: bin/171882: incorrect port fowarding with server allocated port Date: Sun, 23 Sep 2012 23:00:00 +0900 I tested under newest source. but it does not run correctly. The flags for datafellows is conflicted. Index: /usr/src/crypto/openssh/compat.h =================================================================== --- /usr/src/crypto/openssh/compat.h (revision 240847) +++ /usr/src/crypto/openssh/compat.h (working copy) @@ -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);