From owner-svn-ports-head@FreeBSD.ORG Thu Oct 23 06:39:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF5533F3; Thu, 23 Oct 2014 06:39:01 +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 ABCD614E; Thu, 23 Oct 2014 06:39:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9N6d1Ym044964; Thu, 23 Oct 2014 06:39:01 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9N6d1I5044962; Thu, 23 Oct 2014 06:39:01 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201410230639.s9N6d1I5044962@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 23 Oct 2014 06:39:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371377 - in head/security/racoon2: . 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, 23 Oct 2014 06:39:01 -0000 Author: cy Date: Thu Oct 23 06:39:00 2014 New Revision: 371377 URL: https://svnweb.freebsd.org/changeset/ports/371377 QAT: https://qat.redports.org/buildarchive/r371377/ Log: Add hack to address wrong security index. Submitted by: Denis Ahrens Obtained from: http://www.racoon2.wide.ad.jp/ml/racoon2-users/201008/msg804.html Added: head/security/racoon2/files/patch-iked__ikev2_child.c (contents, props changed) Modified: head/security/racoon2/Makefile Modified: head/security/racoon2/Makefile ============================================================================== --- head/security/racoon2/Makefile Thu Oct 23 06:21:11 2014 (r371376) +++ head/security/racoon2/Makefile Thu Oct 23 06:39:00 2014 (r371377) @@ -3,7 +3,7 @@ PORTNAME= racoon2 PORTVERSION= 20100526a -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security net ipv6 MASTER_SITES= ftp://ftp.racoon2.wide.ad.jp/pub/racoon2/ Added: head/security/racoon2/files/patch-iked__ikev2_child.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/racoon2/files/patch-iked__ikev2_child.c Thu Oct 23 06:39:00 2014 (r371377) @@ -0,0 +1,11 @@ +--- iked/ikev2_child.c.orig 2008-09-10 01:30:58.000000000 -0700 ++++ iked/ikev2_child.c 2014-10-22 23:33:18.140601874 -0700 +@@ -1171,7 +1171,7 @@ + * used to do update or add. + */ + param->flags = 0; +- if (child_sa->is_initiator) ++ if (child_sa->is_initiator && child_sa->preceding_satype == 0) + param->flags |= PFK_FLAG_NOPORTS; + + param->wsize = ikev2_ipsec_window_size;