summaryrefslogtreecommitdiff
path: root/sys/security/mac_biba
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2007-10-28 17:55:57 +0000
committerRobert Watson <rwatson@FreeBSD.org>2007-10-28 17:55:57 +0000
commit2a9e17ce8e0e9ac0c0e105a3495b919a9182694b (patch)
treeea9e4b5af6e13229c36a6b366ba45e4eb67ff102 /sys/security/mac_biba
parenta13e21f7bc3447d96847cca8b01858d341489b26 (diff)
downloadsrc-test2-2a9e17ce8e0e9ac0c0e105a3495b919a9182694b.tar.gz
src-test2-2a9e17ce8e0e9ac0c0e105a3495b919a9182694b.zip
Notes
Diffstat (limited to 'sys/security/mac_biba')
-rw-r--r--sys/security/mac_biba/mac_biba.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/sys/security/mac_biba/mac_biba.c b/sys/security/mac_biba/mac_biba.c
index 5702c01fd66f..72f974519c7f 100644
--- a/sys/security/mac_biba/mac_biba.c
+++ b/sys/security/mac_biba/mac_biba.c
@@ -1291,19 +1291,6 @@ biba_ifnet_create_mbuf(struct ifnet *ifp, struct label *ifplabel,
biba_copy_effective(source, dest);
}
-static void
-biba_mbuf_create_multicast_encap(struct mbuf *m, struct label *mlabel,
- struct ifnet *ifp, struct label *ifplabel, struct mbuf *mnew,
- struct label *mnewlabel)
-{
- struct mac_biba *source, *dest;
-
- source = SLOT(mlabel);
- dest = SLOT(mnewlabel);
-
- biba_copy_effective(source, dest);
-}
-
static int
biba_ipq_match(struct mbuf *m, struct label *mlabel, struct ipq *ipq,
struct label *ipqlabel)
@@ -3367,7 +3354,6 @@ static struct mac_policy_ops mac_biba_ops =
.mpo_inpcb_create_mbuf = biba_inpcb_create_mbuf,
.mpo_bpfdesc_create_mbuf = biba_bpfdesc_create_mbuf,
.mpo_ifnet_create_mbuf = biba_ifnet_create_mbuf,
- .mpo_mbuf_create_multicast_encap = biba_mbuf_create_multicast_encap,
.mpo_ipq_match = biba_ipq_match,
.mpo_ifnet_relabel = biba_ifnet_relabel,
.mpo_ipq_update = biba_ipq_update,