Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Nov 2005 12:28:56 +0100 (CET)
From:      Andre Albsmeier <Andre.Albsmeier@siemens.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/89491: [PATCH] bugfix for net-mgmt/arpwatch-devel
Message-ID:  <200511241128.jAOBSu3o051713@curry.mchp.siemens.de>
Resent-Message-ID: <200511241130.jAOBU2Yr044392@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         89491
>Category:       ports
>Synopsis:       [PATCH] bugfix for net-mgmt/arpwatch-devel
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Nov 24 11:30:01 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Andre Albsmeier
>Release:        FreeBSD 5.4-STABLE i386
>Organization:
>Environment:

current ports tree.

>Description:

files/patch-an of arpwatch-devel has a small bug, the
right parenthesis is in the wrong place.
(== has a higher priority than &)

>How-To-Repeat:

grep FLIPFLOP_DECNET $PORTSDIR/net-mgmt/arpwatch-devel/files/patch-an

>Fix:

--- files/patch-an.ORI	Thu Nov 24 12:19:23 2005
+++ files/patch-an	Thu Nov 24 12:19:41 2005
@@ -68,7 +68,7 @@
 +	/* these types are sent to syslog instead of reported on.
 +	 * only continue if there are other events as well
 +	 */
-+	if (event == 0 || (event & ~(IP_ETHER_REUSE | FLIPFLOP_DECNET) == 0))
++	if (event == 0 || (event & ~(IP_ETHER_REUSE | FLIPFLOP_DECNET)) == 0)
 +	  return;
 +
  	if (debug) {

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200511241128.jAOBSu3o051713>