Deleted Added
full compact
43c43
< __FBSDID("$FreeBSD: head/sys/security/mac/mac_net.c 119198 2003-08-21 13:53:01Z rwatson $");
---
> __FBSDID("$FreeBSD: head/sys/security/mac/mac_net.c 119244 2003-08-21 18:21:22Z rwatson $");
2400a2401,2419
> mac_reflect_mbuf_icmp(struct mbuf *m)
> {
> struct label *label;
>
> label = mbuf_to_label(m);
>
> MAC_PERFORM(reflect_mbuf_icmp, m, label);
> }
> void
> mac_reflect_mbuf_tcp(struct mbuf *m)
> {
> struct label *label;
>
> label = mbuf_to_label(m);
>
> MAC_PERFORM(reflect_mbuf_tcp, m, label);
> }
>
> void