diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 1997-04-27 20:01:29 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 1997-04-27 20:01:29 +0000 |
commit | a29f300e809cf6c0167aa2518e33d076f62db72f (patch) | |
tree | 26f8f66c254e302cbdab8c0f5cb2d6ebb75bb38a /sys/netinet/tcp_input.c | |
parent | ee7877dfec86c65ee7af0a5c2b10112ce0d36485 (diff) |
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 0aefb255b1f3..f76526eee657 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95 - * $Id$ + * $Id: tcp_input.c,v 1.57 1997/02/22 09:41:40 peter Exp $ */ #ifndef TUBA_INCLUDE @@ -42,6 +42,7 @@ #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/mbuf.h> +#include <sys/proc.h> /* for proc0 declaration */ #include <sys/protosw.h> #include <sys/socket.h> #include <sys/socketvar.h> @@ -652,7 +653,7 @@ findpcb: laddr = inp->inp_laddr; if (inp->inp_laddr.s_addr == INADDR_ANY) inp->inp_laddr = ti->ti_dst; - if (in_pcbconnect(inp, am)) { + if (in_pcbconnect(inp, am, &proc0)) { /* XXX creds */ inp->inp_laddr = laddr; (void) m_free(am); goto drop; |