aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2008-04-24 14:16:36 +0200
committerJohn W. Linville <linville@tuxdriver.com>2008-04-30 20:34:26 -0400
commite94e106831403d5028e7bb73c3163951134de1ba (patch)
tree9d27e03504f390a747c4ef36e6bb93e0cd2c1f8e /net
parentmac80211: assign conf.beacon_control for mesh (diff)
downloadlinux-dev-e94e106831403d5028e7bb73c3163951134de1ba.tar.xz
linux-dev-e94e106831403d5028e7bb73c3163951134de1ba.zip
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 e12ffa172813..ab952fff1811 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 */