diff options
author | rwatson <rwatson@FreeBSD.org> | 2003-08-22 12:32:07 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2003-08-22 12:32:07 +0000 |
commit | 3cf3b40a9150e289f87a02d529a61eb1c6473417 (patch) | |
tree | ce1777680fa0d50fbddcc325a884f954e80e34b0 | |
parent | 3f7f2a4cfc477c97184c20eef0de1bfad4b8ac5c (diff) | |
download | FreeBSD-src-3cf3b40a9150e289f87a02d529a61eb1c6473417.zip FreeBSD-src-3cf3b40a9150e289f87a02d529a61eb1c6473417.tar.gz |
Correct typo introduced during manual merge: hook up the reflect_tcp
test to the reflect_tcp entry point, rather than the reflect_icmp
entry point.
Submitted by: naddy
-rw-r--r-- | sys/security/mac_test/mac_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/security/mac_test/mac_test.c b/sys/security/mac_test/mac_test.c index 61d91c0..1aafa92 100644 --- a/sys/security/mac_test/mac_test.c +++ b/sys/security/mac_test/mac_test.c @@ -1823,7 +1823,7 @@ static struct mac_policy_ops mac_test_ops = .mpo_create_mbuf_netlayer = mac_test_create_mbuf_netlayer, .mpo_fragment_match = mac_test_fragment_match, .mpo_reflect_mbuf_icmp = mac_test_reflect_mbuf_icmp, - .mpo_reflect_mbuf_icmp = mac_test_reflect_mbuf_tcp, + .mpo_reflect_mbuf_tcp = mac_test_reflect_mbuf_tcp, .mpo_relabel_ifnet = mac_test_relabel_ifnet, .mpo_update_ipq = mac_test_update_ipq, .mpo_create_cred = mac_test_create_cred, |