summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2008-04-24 12:16:36 (GMT)
committerJohn W. Linville <linville@tuxdriver.com>2008-05-01 00:34:26 (GMT)
commite94e106831403d5028e7bb73c3163951134de1ba (patch)
tree9d27e03504f390a747c4ef36e6bb93e0cd2c1f8e /net
parent8b808bf29bdafe9270cb283ea093bb87f5a3be19 (diff)
downloadlinux-fsl-qoriq-e94e106831403d5028e7bb73c3163951134de1ba.tar.xz
mac80211: don't allow invalid WDS peer addresses
Rather than just disallowing the zero address, disallow all invalid ones. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c
index e12ffa1..ab952ff 100644
--- a/net/mac80211/main.c
+++ b/net/mac80211/main.c
@@ -255,7 +255,7 @@ static int ieee80211_open(struct net_device *dev)
switch (sdata->vif.type) {
case IEEE80211_IF_TYPE_WDS:
- if (is_zero_ether_addr(sdata->u.wds.remote_addr))
+ if (!is_valid_ether_addr(sdata->u.wds.remote_addr))
return -ENOLINK;
/* Create STA entry for the WDS peer */