From 831d702ab2986760e9fe8bf3d00364c95c5edfb8 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Tue, 16 Jun 2015 14:03:25 -0500 Subject: [PATCH] wiphy: Add rank to debug output in process_bss --- src/wiphy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wiphy.c b/src/wiphy.c index 1c962873..d920483a 100644 --- a/src/wiphy.c +++ b/src/wiphy.c @@ -1498,11 +1498,11 @@ static void process_bss(struct netdev *netdev, struct scan_bss *bss) enum scan_ssid_security ssid_security; const char *path; - l_debug("Found BSS '%s' with SSID: %s, freq: %u, " + l_debug("Found BSS '%s' with SSID: %s, freq: %u, rank: %u, " "strength: %i", bss_address_to_string(bss), util_ssid_to_utf8(bss->ssid_len, bss->ssid), - bss->frequency, bss->signal_strength); + bss->frequency, bss->rank, bss->signal_strength); if (!util_ssid_is_utf8(bss->ssid_len, bss->ssid)) { l_warn("Ignoring BSS with non-UTF8 SSID");