From owner-svn-ports-all@freebsd.org Sun Feb 11 15:33:43 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E8CDF2198C; Sun, 11 Feb 2018 15:33:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D4F0B7D04B; Sun, 11 Feb 2018 15:33:42 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CF8AB24C83; Sun, 11 Feb 2018 15:33:42 +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 w1BFXgLg085597; Sun, 11 Feb 2018 15:33:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1BFXgQR085596; Sun, 11 Feb 2018 15:33:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802111533.w1BFXgQR085596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 11 Feb 2018 15:33:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r461508 - branches/2018Q1/net/xprobe/files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2018Q1/net/xprobe/files X-SVN-Commit-Revision: 461508 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.25 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: Sun, 11 Feb 2018 15:33:43 -0000 Author: sunpoet Date: Sun Feb 11 15:33:42 2018 New Revision: 461508 URL: https://svnweb.freebsd.org/changeset/ports/461508 Log: MFH: r461501 Fix build with Clang 6 Approved by: ports-secteam (blanket) Added: branches/2018Q1/net/xprobe/files/patch-src-xplib-xp_lib.cc - copied unchanged from r461501, head/net/xprobe/files/patch-src-xplib-xp_lib.cc Modified: Directory Properties: branches/2018Q1/ (props changed) Copied: branches/2018Q1/net/xprobe/files/patch-src-xplib-xp_lib.cc (from r461501, head/net/xprobe/files/patch-src-xplib-xp_lib.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/net/xprobe/files/patch-src-xplib-xp_lib.cc Sun Feb 11 15:33:42 2018 (r461508, copy of r461501, head/net/xprobe/files/patch-src-xplib-xp_lib.cc) @@ -0,0 +1,11 @@ +--- src/xplib/xp_lib.cc.orig 2005-07-27 08:38:16 UTC ++++ src/xplib/xp_lib.cc +@@ -82,7 +82,7 @@ int xp_lib::OpenUDPSocket(struct sockadd + return FAIL; + } + if (bind_sin != NULL) +- if (bind(sock, (struct sockaddr *)bind_sin, sizeof(struct sockaddr_in)) == -1) { ++ if (::bind(sock, (struct sockaddr *)bind_sin, sizeof(struct sockaddr_in)) == -1) { + return FAIL; + } +