summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2001-09-03 20:03:55 +0000
committerJulian Elischer <julian@FreeBSD.org>2001-09-03 20:03:55 +0000
commitf0ffb944d259efbe7c4e223b4068be440c1a51cf (patch)
tree8d09274631c646d1bfce4acc158d08cc765103da /sys/netinet/tcp_input.c
parent3fe149a64315002e9187d3a3c3040bd30cf3000c (diff)
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 38f4a3efcc10..e09389638d83 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -322,15 +322,15 @@ tcp6_input(mp, offp, proto)
return IPPROTO_DONE;
}
- tcp_input(m, *offp, proto);
+ tcp_input(m, *offp);
return IPPROTO_DONE;
}
#endif
void
-tcp_input(m, off0, proto)
+tcp_input(m, off0)
register struct mbuf *m;
- int off0, proto;
+ int off0;
{
register struct tcphdr *th;
register struct ip *ip = NULL;