Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/netinet/ip_input.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- src/sys/netinet/ip_input.c 1995/05/14 08:23:00 1.16 +++ src/sys/netinet/ip_input.c 1995/05/15 02:09:58 1.17 @@ -1,4 +1,4 @@ -/* $NetBSD: ip_input.c,v 1.16 1995/05/14 08:23:00 cgd Exp $ */ +/* $NetBSD: ip_input.c,v 1.17 1995/05/15 02:09:58 cgd Exp $ */ /* * Copyright (c) 1982, 1986, 1988, 1993 @@ -378,7 +378,7 @@ found: * Make sure that fragments have a data length * that's a non-zero multiple of 8 bytes. */ - if (ip->ip_len == 0 || (ip->ip_len & 0x7) != 0) + if (ip->ip_len == 0 || (ip->ip_len & 0x7) != 0) { ipstat.ips_badfrags++; goto bad; }