projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e60c774
)
mac80211: accept empty strings for hidden SSIDs
author
Fabio Rossi
<rossi.f@inwind.it>
Wed, 26 Nov 2008 21:44:23 +0000
(22:44 +0100)
committer
John W. Linville
<linville@tuxdriver.com>
Fri, 5 Dec 2008 14:32:59 +0000
(09:32 -0500)
Some access points (e.g. Sitecom WL-174) use an empty string as hidden SSID.
Signed-off-by: Fabio Rossi <rossi.f@inwind.it>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/mlme.c
patch
|
blob
|
history
diff --git
a/net/mac80211/mlme.c
b/net/mac80211/mlme.c
index 806d3ded98bdff0fca819ba4b29ca12604dcc536..87b2ac85d911877f3cb4940b25ac27d0ef9d2f82 100644
(file)
--- a/
net/mac80211/mlme.c
+++ b/
net/mac80211/mlme.c
@@
-2012,7
+2012,7
@@
static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta,
}
}
- if (hidden_ssid &&
ifsta->ssid_len == ssid_len
)
+ if (hidden_ssid &&
(ifsta->ssid_len == ssid_len || ssid_len == 0)
)
return 1;
if (ssid_len == 1 && ssid[0] == ' ')