From 3895f5d2ccfd73d6338292f64364bd9299b199d5 Mon Sep 17 00:00:00 2001 From: hauke Date: Mon, 11 Nov 2013 21:54:55 +0000 Subject: [PATCH] iwinfo: don't report associations for broadcom wds interfaces The associations list for Broadcom WDS interfaces are duplicate to those reported by the corresponding AP interface; so there is no need to report them again. Signed-off-by: Nathan Hintz git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38746 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/utils/iwinfo/src/iwinfo_wl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/network/utils/iwinfo/src/iwinfo_wl.c b/package/network/utils/iwinfo/src/iwinfo_wl.c index f5f0d4be78..1adceb071c 100644 --- a/package/network/utils/iwinfo/src/iwinfo_wl.c +++ b/package/network/utils/iwinfo/src/iwinfo_wl.c @@ -55,6 +55,9 @@ static struct wl_maclist * wl_read_assoclist(const char *ifname) struct wl_maclist *macs; int maclen = 4 + WL_MAX_STA_COUNT * 6; + if (strstr(ifname, "wds")) + return NULL; + if ((macs = (struct wl_maclist *) malloc(maclen)) != NULL) { memset(macs, 0, maclen); -- 2.35.1