Return-path: Received: from latitanza.investici.org ([82.94.249.234]:37257 "EHLO latitanza.investici.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754622Ab2KISrn (ORCPT ); Fri, 9 Nov 2012 13:47:43 -0500 From: Antonio Quartulli To: Johannes Berg Cc: linux-wireless@vger.kernel.org, Antonio Quartulli Subject: [PATCHv2] iw: print the ssid when requesting device info Date: Fri, 9 Nov 2012 19:46:53 +0100 Message-Id: <1352486813-26168-1-git-send-email-ordex@autistici.org> (sfid-20121109_194746_654229_EC915C61) In-Reply-To: <1352468278-30931-1-git-send-email-ordex@autistici.org> References: <1352468278-30931-1-git-send-email-ordex@autistici.org> Sender: linux-wireless-owner@vger.kernel.org List-ID: The GET_INTERFACE command receives also the ssid as part of the reply. This patch makes iw print the ssid together with the other information when issuing the "iw dev $vif info" command. Signed-off-by: Antonio Quartulli --- v2: - use print_ssid_escaped() interface.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/interface.c b/interface.c index 810c2b9..28626dc 100644 --- a/interface.c +++ b/interface.c @@ -294,6 +294,12 @@ static int print_iface_handler(struct nl_msg *msg, void *arg) mac_addr_n2a(mac_addr, nla_data(tb_msg[NL80211_ATTR_MAC])); printf("%s\taddr %s\n", indent, mac_addr); } + if (tb_msg[NL80211_ATTR_SSID]) { + printf("%s\tssid ", indent); + print_ssid_escaped(nla_len(tb_msg[NL80211_ATTR_SSID]), + nla_data(tb_msg[NL80211_ATTR_SSID])); + printf("\n"); + } if (tb_msg[NL80211_ATTR_IFTYPE]) printf("%s\ttype %s\n", indent, iftype_name(nla_get_u32(tb_msg[NL80211_ATTR_IFTYPE]))); if (!wiphy && tb_msg[NL80211_ATTR_WIPHY]) -- 1.8.0