From d2858883b0214de39fbd78b160c49758f4ad5531 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 20 Oct 2013 17:53:46 +0300 Subject: [PATCH] P2P: Add GO BSS entry details to debug log on join-a-group This makes it easier to debug issues related to selecting GO information from the latest updated BSS table entry. Signed-hostap: Jouni Malinen --- wpa_supplicant/p2p_supplicant.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wpa_supplicant/p2p_supplicant.c b/wpa_supplicant/p2p_supplicant.c index 027caef58..3b544db2e 100644 --- a/wpa_supplicant/p2p_supplicant.c +++ b/wpa_supplicant/p2p_supplicant.c @@ -3750,7 +3750,8 @@ static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s, if (bss) { freq = bss->freq; wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency " - "from BSS table: %d MHz", freq); + "from BSS table: %d MHz (SSID %s)", freq, + wpa_ssid_txt(bss->ssid, bss->ssid_len)); } if (freq > 0) { u16 method; @@ -3955,6 +3956,9 @@ static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s) res.freq = bss->freq; res.ssid_len = bss->ssid_len; os_memcpy(res.ssid, bss->ssid, bss->ssid_len); + wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency " + "from BSS table: %d MHz (SSID %s)", bss->freq, + wpa_ssid_txt(bss->ssid, bss->ssid_len)); } if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {