diff options
author | rwatson <rwatson@FreeBSD.org> | 2007-10-26 13:18:38 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2007-10-26 13:18:38 +0000 |
commit | a3b8fc4866545652607bccb0d3d248e512463e35 (patch) | |
tree | 5126fbd4b18174fda8e90bc084911557af9f87ae /sys/contrib/pf | |
parent | 6edabeb2b453e55413bf787226f2563ce3c4a5da (diff) | |
download | FreeBSD-src-a3b8fc4866545652607bccb0d3d248e512463e35.zip FreeBSD-src-a3b8fc4866545652607bccb0d3d248e512463e35.tar.gz |
Rename 'mac_mbuf_create_from_firewall' to 'mac_netinet_firewall_send' as
we move towards netinet as a pseudo-object for the MAC Framework.
Rename 'mac_create_mbuf_linklayer' to 'mac_mbuf_create_linklayer' to
reflect general object-first ordering preference.
Sponsored by: SPARTA (original patches against Mac OS X)
Obtained from: TrustedBSD Project, Apple Computer
Diffstat (limited to 'sys/contrib/pf')
-rw-r--r-- | sys/contrib/pf/net/pf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/contrib/pf/net/pf.c b/sys/contrib/pf/net/pf.c index 5b209af..c4c5892 100644 --- a/sys/contrib/pf/net/pf.c +++ b/sys/contrib/pf/net/pf.c @@ -1820,7 +1820,7 @@ pf_send_tcp(const struct pf_rule *r, sa_family_t af, if (replyto) mac_mbuf_create_netlayer(replyto, m); else - mac_mbuf_create_from_firewall(m); + mac_netinet_firewall_send(m); #else (void)replyto; #endif |