Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b9bf1e60a294fc7795d5198f94a917290e52865b
Commit:     b9bf1e60a294fc7795d5198f94a917290e52865b
Parent:     7b7ed879254ad43990c9d67f95be3427401c3392
Author:     John W. Linville <[EMAIL PROTECTED]>
AuthorDate: Tue Aug 7 16:33:15 2007 -0400
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Tue Aug 14 16:48:23 2007 -0400

    [PATCH] mac80211: probe for hidden SSIDs in pre-auth scan
    
    Probe for hidden SSIDs if initiating pre-authentication scan and SSID
    is set for STA interface.
    
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 net/mac80211/ieee80211_sta.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c
index 7ba352e..0d99b68 100644
--- a/net/mac80211/ieee80211_sta.c
+++ b/net/mac80211/ieee80211_sta.c
@@ -2154,7 +2154,11 @@ static int ieee80211_sta_config_auth(struct net_device 
*dev,
                return 0;
        } else {
                if (ifsta->state != IEEE80211_AUTHENTICATE) {
-                       ieee80211_sta_start_scan(dev, NULL, 0);
+                       if (ifsta->auto_ssid_sel)
+                               ieee80211_sta_start_scan(dev, NULL, 0);
+                       else
+                               ieee80211_sta_start_scan(dev, ifsta->ssid,
+                                                        ifsta->ssid_len);
                        ifsta->state = IEEE80211_AUTHENTICATE;
                        set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
                } else
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to