From 52d581cd3308dc912b8aaddfdbd7c88da00608fe Mon Sep 17 00:00:00 2001 From: Alexander Langer Date: Mon, 5 Jan 1998 00:14:05 +0000 Subject: [PATCH] Added missing parens from previous commit. --- sys/netinet/ip_fw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c index 1ae0faba0f5..a98dc4d62a1 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 */