From owner-svn-ports-all@FreeBSD.ORG Fri Nov 15 15:54:11 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 544EC7C6; Fri, 15 Nov 2013 15:54:11 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 43895223B; Fri, 15 Nov 2013 15:54:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAFFsB5E071625; Fri, 15 Nov 2013 15:54:11 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAFFsApE071623; Fri, 15 Nov 2013 15:54:10 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201311151554.rAFFsApE071623@svn.freebsd.org> From: Bryan Drewery Date: Fri, 15 Nov 2013 15:54:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333879 - head/sysutils/nfsping/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-all@freebsd.org X-Mailman-Version: 2.1.16 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: Fri, 15 Nov 2013 15:54:11 -0000 Author: bdrewery Date: Fri Nov 15 15:54:10 2013 New Revision: 333879 URL: http://svnweb.freebsd.org/changeset/ports/333879 Log: Fix build on 10 Added: head/sysutils/nfsping/files/patch-src__nfsping.h (contents, props changed) head/sysutils/nfsping/files/patch-src__util.c (contents, props changed) Added: head/sysutils/nfsping/files/patch-src__nfsping.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/nfsping/files/patch-src__nfsping.h Fri Nov 15 15:54:10 2013 (r333879) @@ -0,0 +1,10 @@ +--- ./src/nfsping.h.orig 2013-10-17 23:14:46.000000000 -0500 ++++ ./src/nfsping.h 2013-11-15 09:52:50.587560177 -0600 +@@ -13,6 +13,7 @@ + #include + #include + #include ++#include + #include + #include + #include Added: head/sysutils/nfsping/files/patch-src__util.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/nfsping/files/patch-src__util.c Fri Nov 15 15:54:10 2013 (r333879) @@ -0,0 +1,11 @@ +--- ./src/util.c.orig 2013-11-15 09:53:06.149558492 -0600 ++++ ./src/util.c 2013-11-15 09:53:18.903559033 -0600 +@@ -123,7 +123,7 @@ + if (tmp) { + next->path = strdup(tmp); + /* the root filehandle in hex */ +- if (tmp = strtok(NULL, ":")) { ++ if ((tmp = strtok(NULL, ":"))) { + /* hex takes two characters for each byte */ + fsroot_len = strlen(tmp) / 2; +