wiphy: Add rank to debug output in process_bss

This commit is contained in:
Denis Kenzior 2015-06-16 14:03:25 -05:00
parent 0d977f62f6
commit 831d702ab2
1 changed files with 2 additions and 2 deletions

View File

@ -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");