diff options
| author | Brian Feldman <green@FreeBSD.org> | 1999-09-19 02:17:02 +0000 |
|---|---|---|
| committer | Brian Feldman <green@FreeBSD.org> | 1999-09-19 02:17:02 +0000 |
| commit | 2f9a21326c3e5db42ce568a6b8a9ec4e2a600af1 (patch) | |
| tree | 5d8ad4a12e76df2c5ef3fffc4246e6c08c5ab8da /sys/netinet/tcp_subr.c | |
| parent | 27b5e4fde7f40c5da29749b9637cac1fe1e6dc1f (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_subr.c')
| -rw-r--r-- | sys/netinet/tcp_subr.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index a6a52704d29e..07da9545535a 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -641,13 +641,11 @@ tcp_getcred SYSCTL_HANDLER_ARGS s = splnet(); inp = in_pcblookup_hash(&tcbinfo, addrs[1].sin_addr, addrs[1].sin_port, addrs[0].sin_addr, addrs[0].sin_port, 0); - if (inp == NULL || inp->inp_socket == NULL || - inp->inp_socket->so_cred == NULL) { + if (inp == NULL || inp->inp_socket == NULL) { error = ENOENT; goto out; } - error = SYSCTL_OUT(req, inp->inp_socket->so_cred->pc_ucred, - sizeof(struct ucred)); + error = SYSCTL_OUT(req, inp->inp_socket->so_cred, sizeof(struct ucred)); out: splx(s); return (error); |
