diff options
-rw-r--r-- | sys/netinet/ip_fw.c | 6 |
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 */ |