svn commit: r194430 - projects/mesh11s/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Thu Jun 18 09:55:27 UTC 2009


Author: rpaulo
Date: Thu Jun 18 09:55:26 2009
New Revision: 194430
URL: http://svn.freebsd.org/changeset/base/194430

Log:
  Print ACL messages only when ACL bit is set.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/mesh11s/sys/net80211/ieee80211_mesh.c

Modified: projects/mesh11s/sys/net80211/ieee80211_mesh.c
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_mesh.c	Thu Jun 18 07:27:11 2009	(r194429)
+++ projects/mesh11s/sys/net80211/ieee80211_mesh.c	Thu Jun 18 09:55:26 2009	(r194430)
@@ -549,7 +549,7 @@ mesh_recv_mgmt(struct ieee80211_node *ni
 		 * Consult the ACL policy module if setup.
 		 */
 		if (vap->iv_acl != NULL && !vap->iv_acl->iac_check(vap, wh->i_addr2)) {
-                        IEEE80211_DISCARD(vap, IEEE80211_MSG_MESH | IEEE80211_MSG_ACL,
+                        IEEE80211_DISCARD(vap, IEEE80211_MSG_ACL,
                             wh, NULL, "%s", "disallowed by ACL");
                         vap->iv_stats.is_rx_acl++;
 			return;


More information about the svn-src-projects mailing list