From 0613a964c52b31d6763fd30dd45521314f3a2429 Mon Sep 17 00:00:00 2001 From: Irfan Sheriff Date: Mon, 13 Aug 2012 10:56:16 -0700 Subject: Add delimiter for bss command With the availability of MASK option, the number of lines per BSS is not obvious, add a delimiter to make parsing less flaky Bug: 2961159 Change-Id: I9e5523f8da183e0735dbc06f0c09c9f841060504 --- wpa_supplicant/ctrl_iface.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 8aad951..63da94c 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -2665,6 +2665,13 @@ static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss, } #endif /* CONFIG_INTERWORKING */ +#ifdef ANDROID + ret = os_snprintf(pos, end - pos, "====\n"); + if (ret < 0 || ret >= end - pos) + return 0; + pos += ret; +#endif + return pos - buf; } -- cgit v1.1