summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1994-01-10 23:20:07 +0000
committermycroft <mycroft@NetBSD.org>1994-01-10 23:20:07 +0000
commite287c3d10e4aeaf856f2c3a8f0da59af66d32c8b (patch)
tree9e7a13d6dad328fe29547e8ab731de40aea496b4 /sys
parent38bdf5186b96891238e1e6cc2498c03384128f43 (diff)
Fix function name.
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/in_cksum.c6
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;
{