Fix spelling of MAC check for 8.x version of MAC Framework, not noticed due

to a lack of an opt_mac.h include, which I won't add for now as options MAC
will soon move to opt_global.h.

Spotted by:	pjd
This commit is contained in:
Robert Watson 2009-06-05 13:55:33 +00:00
parent 115a40c7bf
commit c27b9cdb83
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193504

View File

@ -62,6 +62,8 @@ __FBSDID("$FreeBSD$");
#include <netinet/ip.h>
#endif
#include <security/mac/mac_framework.h>
#define ETHER_HEADER_COPY(dst, src) \
memcpy(dst, src, sizeof(struct ether_header))
@ -354,7 +356,7 @@ ieee80211_output(struct ifnet *ifp, struct mbuf *m,
if (dst->sa_family != AF_IEEE80211)
return vap->iv_output(ifp, m, dst, ro);
#ifdef MAC
error = mac_check_ifnet_transmit(ifp, m);
error = mac_ifnet_check_transmit(ifp, m);
if (error)
senderr(error);
#endif