svn commit: r193504 - head/sys/net80211

Robert Watson rwatson at FreeBSD.org
Fri Jun 5 13:55:35 UTC 2009


Author: rwatson
Date: Fri Jun  5 13:55:33 2009
New Revision: 193504
URL: http://svn.freebsd.org/changeset/base/193504

Log:
  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

Modified:
  head/sys/net80211/ieee80211_output.c

Modified: head/sys/net80211/ieee80211_output.c
==============================================================================
--- head/sys/net80211/ieee80211_output.c	Fri Jun  5 13:50:19 2009	(r193503)
+++ head/sys/net80211/ieee80211_output.c	Fri Jun  5 13:55:33 2009	(r193504)
@@ -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, stru
 	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


More information about the svn-src-head mailing list