From owner-svn-ports-head@FreeBSD.ORG Thu Apr 9 20:19:18 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E941F38F; Thu, 9 Apr 2015 20:19:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BBBE430B; Thu, 9 Apr 2015 20:19:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t39KJIfv006136; Thu, 9 Apr 2015 20:19:18 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t39KJIt1006133; Thu, 9 Apr 2015 20:19:18 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201504092019.t39KJIt1006133@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 9 Apr 2015 20:19:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383675 - in head/security/openssh-portable: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 20:19:19 -0000 Author: bdrewery Date: Thu Apr 9 20:19:17 2015 New Revision: 383675 URL: https://svnweb.freebsd.org/changeset/ports/383675 Log: Limit the TTSSH bug fix in r383618 to only versions that have it. Submitted by: IWAMOTO Kouichi Modified: head/security/openssh-portable/Makefile head/security/openssh-portable/files/extra-patch-ttssh Modified: head/security/openssh-portable/Makefile ============================================================================== --- head/security/openssh-portable/Makefile Thu Apr 9 20:08:50 2015 (r383674) +++ head/security/openssh-portable/Makefile Thu Apr 9 20:19:17 2015 (r383675) @@ -3,7 +3,7 @@ PORTNAME= openssh DISTVERSION= 6.8p1 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= security ipv6 MASTER_SITES= ${MASTER_SITE_OPENBSD} Modified: head/security/openssh-portable/files/extra-patch-ttssh ============================================================================== --- head/security/openssh-portable/files/extra-patch-ttssh Thu Apr 9 20:08:50 2015 (r383674) +++ head/security/openssh-portable/files/extra-patch-ttssh Thu Apr 9 20:19:17 2015 (r383675) @@ -1,11 +1,26 @@ ---- compat.c.orig 2015-04-08 21:02:53.327154000 -0500 -+++ compat.c 2015-04-08 21:03:58.915062000 -0500 -@@ -167,6 +167,8 @@ +Workaround TTSSH client crash with hostkeys-00@openssh.com messages in +OpenSSH 6.8p1. + + http://en.sourceforge.jp/ticket/browse.php?group_id=1412&tid=35010 + http://en.sourceforge.jp/projects/ttssh2/scm/svn/commits/5829 + +--- compat.c.orig 2015-03-17 00:49:20.000000000 -0500 ++++ compat.c 2015-04-09 15:13:35.061239000 -0500 +@@ -167,6 +167,17 @@ compat_datafellows(const char *version) SSH_BUG_SCANNER }, { "Probe-*", SSH_BUG_PROBE }, -+ { "TTSSH/*", -+ SSH_BUG_HOSTKEYS }, ++ { "TTSSH/1.5.*," ++ "TeraTerm SSH*," ++ "TTSSH/2.1*," ++ "TTSSH/2.2*," ++ "TTSSH/2.3*," ++ "TTSSH/2.4*," ++ "TTSSH/2.5*," ++ "TTSSH/2.6*," ++ "TTSSH/2.70*," ++ "TTSSH/2.71*," ++ "TTSSH/2.72*", SSH_BUG_HOSTKEYS }, { NULL, 0 } };