summaryrefslogtreecommitdiffstats
path: root/sys/net80211/ieee80211_acl.c
diff options
context:
space:
mode:
authorbschmidt <bschmidt@FreeBSD.org>2011-12-17 10:32:31 +0000
committerbschmidt <bschmidt@FreeBSD.org>2011-12-17 10:32:31 +0000
commitd812d4dc6a926ad93b9c51ee84d7fa2430670d3a (patch)
tree65ce2ac4e1fb1a8f07c11807c3a9a30c056f233e /sys/net80211/ieee80211_acl.c
parent49344f6037da62f1994e58cd9a5ba941ac34c519 (diff)
downloadFreeBSD-src-d812d4dc6a926ad93b9c51ee84d7fa2430670d3a.zip
FreeBSD-src-d812d4dc6a926ad93b9c51ee84d7fa2430670d3a.tar.gz
Remove now redundant mac argument.
Discussed with: adrian@
Diffstat (limited to 'sys/net80211/ieee80211_acl.c')
-rw-r--r--sys/net80211/ieee80211_acl.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/net80211/ieee80211_acl.c b/sys/net80211/ieee80211_acl.c
index feff4ad..ac604fb 100644
--- a/sys/net80211/ieee80211_acl.c
+++ b/sys/net80211/ieee80211_acl.c
@@ -152,8 +152,7 @@ _acl_free(struct aclstate *as, struct acl *acl)
}
static int
-acl_check(struct ieee80211vap *vap, const struct ieee80211_frame *wh,
- const uint8_t mac[IEEE80211_ADDR_LEN])
+acl_check(struct ieee80211vap *vap, const struct ieee80211_frame *wh)
{
struct aclstate *as = vap->iv_as;
@@ -162,9 +161,9 @@ acl_check(struct ieee80211vap *vap, const struct ieee80211_frame *wh,
case ACL_POLICY_RADIUS:
return 1;
case ACL_POLICY_ALLOW:
- return _find_acl(as, mac) != NULL;
+ return _find_acl(as, wh->i_addr2) != NULL;
case ACL_POLICY_DENY:
- return _find_acl(as, mac) == NULL;
+ return _find_acl(as, wh->i_addr2) == NULL;
}
return 0; /* should not happen */
}
OpenPOWER on IntegriCloud