diff options
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/tcp_input.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 3762fc8004c..d21db5f3f32 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.70 2000/09/18 22:06:38 provos Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.71 2000/09/18 23:59:39 fgsch Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -2750,7 +2750,10 @@ tcp_mss(tp, offer) struct ifnet *ifp; register int rtt, mss, mssopt; u_long bufsize; - int iphlen, is_ipv6 = 0; + int iphlen; +#ifdef INET6 + int is_ipv6 = 0; +#endif struct inpcb *inp; struct socket *so; |