From owner-svn-ports-head@freebsd.org Mon Mar 28 16:24:27 2016 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 9D4F4AE0E75; Mon, 28 Mar 2016 16:24:27 +0000 (UTC) (envelope-from pi@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 6ECFE1068; Mon, 28 Mar 2016 16:24:27 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2SGOQY2030938; Mon, 28 Mar 2016 16:24:26 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2SGOQCa030937; Mon, 28 Mar 2016 16:24:26 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201603281624.u2SGOQCa030937@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 28 Mar 2016 16:24:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412061 - head/net-mgmt/arpwatch/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.21 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: Mon, 28 Mar 2016 16:24:27 -0000 Author: pi Date: Mon Mar 28 16:24:26 2016 New Revision: 412061 URL: https://svnweb.freebsd.org/changeset/ports/412061 Log: net-mgmt/arpwatch: add missing files for -z flag PR: 208361 Reported by: ohartman@zedat.fu-berlin.de Added: head/net-mgmt/arpwatch/files/patch-util.c (contents, props changed) head/net-mgmt/arpwatch/files/patch-util.h (contents, props changed) Added: head/net-mgmt/arpwatch/files/patch-util.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/arpwatch/files/patch-util.c Mon Mar 28 16:24:26 2016 (r412061) @@ -0,0 +1,10 @@ +--- util.c.orig 2004-01-22 22:25:39 UTC ++++ util.c +@@ -60,6 +60,7 @@ u_char zero[6] = { 0, 0, 0, 0, 0, 0 }; + u_char allones[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; + + int debug = 0; ++int zeroflag = 0; + int initializing = 1; /* true if initializing */ + + /* syslog() helper routine */ Added: head/net-mgmt/arpwatch/files/patch-util.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/arpwatch/files/patch-util.h Mon Mar 28 16:24:26 2016 (r412061) @@ -0,0 +1,8 @@ +--- util.h.orig 1996-10-06 10:22:14 UTC ++++ util.h +@@ -16,4 +16,5 @@ extern u_char zero[6]; + extern u_char allones[6]; + + extern int debug; ++extern int zeroflag; + extern int initializing;