diff options
| author | mycroft <mycroft@NetBSD.org> | 1994-01-10 23:20:07 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1994-01-10 23:20:07 +0000 |
| commit | e287c3d10e4aeaf856f2c3a8f0da59af66d32c8b (patch) | |
| tree | 9e7a13d6dad328fe29547e8ab731de40aea496b4 /sys/netinet | |
| parent | 38bdf5186b96891238e1e6cc2498c03384128f43 (diff) | |
Fix function name.
Diffstat (limited to 'sys/netinet')
| -rw-r--r-- | sys/netinet/in_cksum.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/in_cksum.c b/sys/netinet/in_cksum.c index 6de71fae0fd..45b6a7144a6 100644 --- a/sys/netinet/in_cksum.c +++ b/sys/netinet/in_cksum.c @@ -31,10 +31,10 @@ * SUCH DAMAGE. * * from: @(#)in_cksum.c 7.3 (Berkeley) 6/28/90 - * $Id: in_cksum.c,v 1.6 1994/01/09 01:06:10 mycroft Exp $ + * $Id: in_cksum.c,v 1.7 1994/01/10 23:20:07 mycroft Exp $ */ -#include <sys/types.h> +#include <sys/param.h> #include <sys/mbuf.h> /* @@ -48,7 +48,7 @@ #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);} int -in_cksum_c(m, len) +in_cksum(m, len) register struct mbuf *m; register int len; { |
