From owner-svn-ports-head@freebsd.org Sat Dec 23 18:13:12 2017 Return-Path: Delivered-To: svn-ports-head@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 12818E8EC32; Sat, 23 Dec 2017 18:13:12 +0000 (UTC) (envelope-from farrokhi@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 D0CC46ED93; Sat, 23 Dec 2017 18:13:11 +0000 (UTC) (envelope-from farrokhi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBNIDA5X004792; Sat, 23 Dec 2017 18:13:10 GMT (envelope-from farrokhi@FreeBSD.org) Received: (from farrokhi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBNIDAtS004790; Sat, 23 Dec 2017 18:13:10 GMT (envelope-from farrokhi@FreeBSD.org) Message-Id: <201712231813.vBNIDAtS004790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: farrokhi set sender to farrokhi@FreeBSD.org using -f From: Babak Farrokhi Date: Sat, 23 Dec 2017 18:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457096 - in head/net-mgmt/fprobe: . files X-SVN-Group: ports-head X-SVN-Commit-Author: farrokhi X-SVN-Commit-Paths: in head/net-mgmt/fprobe: . files X-SVN-Commit-Revision: 457096 X-SVN-Commit-Repository: ports 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.25 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: Sat, 23 Dec 2017 18:13:12 -0000 Author: farrokhi Date: Sat Dec 23 18:13:10 2017 New Revision: 457096 URL: https://svnweb.freebsd.org/changeset/ports/457096 Log: - Unbreak build - Take maintainership Added: head/net-mgmt/fprobe/files/patch-src_fprobe.c (contents, props changed) Modified: head/net-mgmt/fprobe/Makefile Modified: head/net-mgmt/fprobe/Makefile ============================================================================== --- head/net-mgmt/fprobe/Makefile Sat Dec 23 17:59:50 2017 (r457095) +++ head/net-mgmt/fprobe/Makefile Sat Dec 23 18:13:10 2017 (r457096) @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= farrokhi@FreeBSD.org COMMENT= Tool that collects network traffic data LICENSE= GPLv2 Added: head/net-mgmt/fprobe/files/patch-src_fprobe.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/fprobe/files/patch-src_fprobe.c Sat Dec 23 18:13:10 2017 (r457096) @@ -0,0 +1,20 @@ +--- src/fprobe.c.orig 2017-12-23 18:54:12 UTC ++++ src/fprobe.c +@@ -393,7 +393,7 @@ void gettime(struct Time *now) + now->usec = t.tv_usec; + } + +-inline time_t cmpmtime(struct Time *t1, struct Time *t2) ++static inline time_t cmpmtime(struct Time *t1, struct Time *t2) + { + return (t1->sec - t2->sec) * 1000 + (t1->usec - t2->usec) / 1000; + } +@@ -411,7 +411,7 @@ hash_t hash_flow(struct Flow *flow) + else return hash(flow, sizeof(struct Flow_TL)); + } + +-inline void copy_flow(struct Flow *src, struct Flow *dst) ++static inline void copy_flow(struct Flow *src, struct Flow *dst) + { + dst->sip = src->sip; + dst->dip = src->dip;