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.148 retrieving revision 1.149 diff -u -p -r1.148 -r1.149 --- src/sys/netinet/ip_input.c 2002/05/07 02:59:38 1.148 +++ src/sys/netinet/ip_input.c 2002/05/12 15:48:39 1.149 @@ -1,4 +1,4 @@ -/* $NetBSD: ip_input.c,v 1.148 2002/05/07 02:59:38 matt Exp $ */ +/* $NetBSD: ip_input.c,v 1.149 2002/05/12 15:48:39 wiz Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -102,7 +102,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.148 2002/05/07 02:59:38 matt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.149 2002/05/12 15:48:39 wiz Exp $"); #include "opt_gateway.h" #include "opt_pfil_hooks.h" @@ -225,7 +225,7 @@ ipq_lock_try() int s; /* - * Use splvm() -- we're bloking things that would cause + * Use splvm() -- we're blocking things that would cause * mbuf allocation. */ s = splvm(); @@ -509,7 +509,7 @@ ip_input(struct mbuf *m) } #ifdef IPSEC - /* ipflow (IP fast fowarding) is not compatible with IPsec. */ + /* ipflow (IP fast forwarding) is not compatible with IPsec. */ m->m_flags &= ~M_CANFASTFWD; #else /* @@ -1679,7 +1679,7 @@ ip_forward(m, srcrt) * a router should not generate ICMP_SOURCEQUENCH as * required in RFC1812 Requirements for IP Version 4 Routers. * source quench could be a big problem under DoS attacks, - * or the underlying interface is rate-limited. + * or if the underlying interface is rate-limited. */ if (mcopy) m_freem(mcopy);