From: Jouni Malinen Date: Fri, 2 Jan 2015 20:54:30 +0000 (+0200) Subject: nl80211: Note linux_set_iface_flags() failure in debug log X-Git-Tag: hostap_2_4~572 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2535da8790df8a44a441a6ca3a9a77b6beb1d78;p=thirdparty%2Fhostap.git nl80211: Note linux_set_iface_flags() failure in debug log There was one final remaining linux_set_iface_flags() call that did not check the result. This specific one does not really matter much, but anyway, be more consistent by checking the result and log any error in debug log. (CID 74146) Signed-off-by: Jouni Malinen --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 9e005e24d..05521fb53 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -2150,7 +2150,11 @@ static void wpa_driver_nl80211_deinit(struct i802_bss *bss) nl80211_handle_destroy(drv->rtnl_sk); } if (bss->added_bridge) { - linux_set_iface_flags(drv->global->ioctl_sock, bss->brname, 0); + if (linux_set_iface_flags(drv->global->ioctl_sock, bss->brname, + 0) < 0) + wpa_printf(MSG_INFO, + "nl80211: Could not set bridge %s down", + bss->brname); if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0) wpa_printf(MSG_INFO, "nl80211: Failed to remove " "bridge %s: %s",