diff options
| author | Sunil Dutt <usdutt@qti.qualcomm.com> | 2014-04-09 09:12:08 +0000 |
|---|---|---|
| committer | Steve Kondik <shade@chemlab.org> | 2014-06-12 14:08:45 -0700 |
| commit | e45c7631ab6b94baea49b1628c4b374b1024add9 (patch) | |
| tree | 343c7e58badaba845b8e733fc86d360204c251a8 | |
| parent | cf6c868a753498aea80ba8ea5a060b6b113ceaa7 (diff) | |
| download | android_external_wpa_supplicant_8-e45c7631ab6b94baea49b1628c4b374b1024add9.tar.gz android_external_wpa_supplicant_8-e45c7631ab6b94baea49b1628c4b374b1024add9.tar.bz2 android_external_wpa_supplicant_8-e45c7631ab6b94baea49b1628c4b374b1024add9.zip | |
P2P: Mark the scan in p2p_in_invitation as p2p_probe
Mark the scan performed by the P2P Client in search of the GO
during the persistant reinvocation as a p2p_probe to avoid
unnecessary use of 802.11b rates.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Git-commit: 8235f89f3f7302a930ab8c2bc1c140a64b6b04f2
Git-repo : git://w1.fi/srv/git/hostap.git
Change-Id: I6174c01e7d0379934b48d42770660a9f63ae4851
CRs-fixed: 645171
| -rw-r--r-- | wpa_supplicant/scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa_supplicant/scan.c b/wpa_supplicant/scan.c index 9d9642a1..dee1fb8a 100644 --- a/wpa_supplicant/scan.c +++ b/wpa_supplicant/scan.c @@ -790,7 +790,7 @@ ssid_list_set: } #ifdef CONFIG_P2P - if (wpa_s->p2p_in_provisioning || + if (wpa_s->p2p_in_provisioning || wpa_s->p2p_in_invitation || (wpa_s->show_group_started && wpa_s->go_params)) { /* * The interface may not yet be in P2P mode, so we have to |
