summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_fw.c
diff options
context:
space:
mode:
authoralex <alex@FreeBSD.org>1998-01-05 00:14:05 +0000
committeralex <alex@FreeBSD.org>1998-01-05 00:14:05 +0000
commit509616d1010c993107647e36ed64ae6f8c7a1bc1 (patch)
tree00d954a988681017531562e5de3bf6a98e51b1a7 /sys/netinet/ip_fw.c
parent147e6a553f204d1b1231faaf9b5f7c1e3f1ad1da (diff)
downloadFreeBSD-src-509616d1010c993107647e36ed64ae6f8c7a1bc1.zip
FreeBSD-src-509616d1010c993107647e36ed64ae6f8c7a1bc1.tar.gz
Added missing parens from previous commit.
Diffstat (limited to 'sys/netinet/ip_fw.c')
-rw-r--r--sys/netinet/ip_fw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c
index 1ae0fab..a98dc4d 100644
--- a/sys/netinet/ip_fw.c
+++ b/sys/netinet/ip_fw.c
@@ -12,7 +12,7 @@
*
* This software is provided ``AS IS'' without any warranties of any kind.
*
- * $Id: ip_fw.c,v 1.68 1998/01/04 22:36:12 alex Exp $
+ * $Id: ip_fw.c,v 1.69 1998/01/05 00:08:57 alex Exp $
*/
/*
@@ -155,8 +155,8 @@ icmptype_match(struct icmp *icmp, struct ip_fw *f)
/* check for matching type in the bitmap */
if (type < IP_FW_ICMPTYPES_DIM * sizeof(unsigned) * 8 &&
- f->fw_icmptypes[type / (sizeof(unsigned) * 8)] &
- (1U << (type % (8 * sizeof(unsigned)))))
+ (f->fw_icmptypes[type / (sizeof(unsigned) * 8)] &
+ (1U << (type % (8 * sizeof(unsigned))))))
return(1);
return(0); /* no match */
OpenPOWER on IntegriCloud