From owner-svn-ports-all@freebsd.org Sat Aug 19 04:48:50 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACC8BDCEC17; Sat, 19 Aug 2017 04:48:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 7B8E5650A0; Sat, 19 Aug 2017 04:48:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7J4mn3T020262; Sat, 19 Aug 2017 04:48:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7J4mnR2020260; Sat, 19 Aug 2017 04:48:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708190448.v7J4mnR2020260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 19 Aug 2017 04:48:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448282 - in branches/2017Q3/benchmarks/iperf: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2017Q3/benchmarks/iperf: . files X-SVN-Commit-Revision: 448282 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 04:48:50 -0000 Author: sunpoet Date: Sat Aug 19 04:48:49 2017 New Revision: 448282 URL: https://svnweb.freebsd.org/changeset/ports/448282 Log: MFH: r448243 Add upstream patch to fix 32 bit constant - Bump PORTREVISION for package change Obtained from: https://sourceforge.net/p/iperf2/code/ci/33812baeb46fce55e45b5ebc7da9dbdd8112a386/ Notified by: Robert McMahon Approved by: ports-secteam (feld) Added: branches/2017Q3/benchmarks/iperf/files/patch-src-Client.cpp - copied unchanged from r448243, head/benchmarks/iperf/files/patch-src-Client.cpp Modified: branches/2017Q3/benchmarks/iperf/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/benchmarks/iperf/Makefile ============================================================================== --- branches/2017Q3/benchmarks/iperf/Makefile Sat Aug 19 04:13:45 2017 (r448281) +++ branches/2017Q3/benchmarks/iperf/Makefile Sat Aug 19 04:48:49 2017 (r448282) @@ -3,6 +3,7 @@ PORTNAME= iperf PORTVERSION= 2.0.10 +PORTREVISION= 1 CATEGORIES= benchmarks MASTER_SITES= SF/${PORTNAME}2 Copied: branches/2017Q3/benchmarks/iperf/files/patch-src-Client.cpp (from r448243, head/benchmarks/iperf/files/patch-src-Client.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/benchmarks/iperf/files/patch-src-Client.cpp Sat Aug 19 04:48:49 2017 (r448282, copy of r448243, head/benchmarks/iperf/files/patch-src-Client.cpp) @@ -0,0 +1,11 @@ +--- src/Client.cpp.orig 2017-08-09 03:54:14 UTC ++++ src/Client.cpp +@@ -680,7 +680,7 @@ void Client::Run( void ) { + + // store datagram ID into buffer + if (isSeqNo64b(mSettings)) { +- mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFFL)); ++ mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFL)); + mBuf_UDP->id2 = htonl((((reportstruct->packetID & 0xFFFFFFFF00000000LL) >> 32) | 0x80000000L)); + } else { + mBuf_UDP->id = htonl(((reportstruct->packetID & 0xFFFFFFFFL) | 0x80000000L));