diff options
| author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-02-03 18:20:55 +0000 |
|---|---|---|
| committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-02-03 18:20:55 +0000 |
| commit | f073c60f73b0212a7c2cdde142b0e79e8a3981fa (patch) | |
| tree | d4a15c08d97fd84eaa902735fd317261af259609 /sys/netinet/tcp_input.c | |
| parent | fc9579997cbd6b5bb3cfe375f114430cd0f3a07d (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
| -rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index eef736cf34bc..2b7f99af7e8b 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -572,12 +572,12 @@ findpcb: #ifdef IPSEC if (isipv6) { - if (inp != NULL && ipsec6_in_reject_so(m, inp->inp_socket)) { + if (inp != NULL && ipsec6_in_reject(m, inp)) { ipsec6stat.in_polvio++; goto drop; } } else { - if (inp != NULL && ipsec4_in_reject_so(m, inp->inp_socket)) { + if (inp != NULL && ipsec4_in_reject(m, inp)) { ipsecstat.in_polvio++; goto drop; } |
