1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00

- Correct operator priority in one of the patches

PR:		ports/89491
Submitted by:	Andre Albsmeier <Andre.Albsmeier@siemens.com>
Approved by:	maintainer timeout (15 days)
This commit is contained in:
Pav Lucistnik 2005-12-09 14:10:32 +00:00
parent 85c9872112
commit 573398bd12
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=150728
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= arpwatch
PORTVERSION= 2.1.a13
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= ftp://ftp.ee.lbl.gov/
PKGNAMESUFFIX= -devel

View File

@ -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) {