diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2002-08-15 18:51:27 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2002-08-15 18:51:27 +0000 |
| commit | fb95b5d3c3d91d5c06e16abf161c11d4be32fb7a (patch) | |
| tree | 470986e91feb7d5a517a603465e7a4febc995bb4 /sys/netinet/udp_usrreq.c | |
| parent | d61198e422e40a336aa2bcefe4e97511b78315b6 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
| -rw-r--r-- | sys/netinet/udp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index cc7a59c6044e..1580d74aac0c 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -320,7 +320,7 @@ udp_input(m, off) } #endif /*IPSEC*/ #ifdef MAC - if (mac_check_socket_receive(last->inp_socket, + if (mac_check_socket_deliver(last->inp_socket, m) != 0) policyfail = 1; #endif @@ -406,7 +406,7 @@ udp_input(m, off) } #endif /*IPSEC*/ #ifdef MAC - error = mac_check_socket_receive(inp->inp_socket, m); + error = mac_check_socket_deliver(inp->inp_socket, m); if (error) goto bad; #endif |
