diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-27 10:42:47 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-27 10:42:47 +0000 |
commit | e827a711a35efacd0220abfe79ab362db5a77db9 (patch) | |
tree | 6152a8d66dd59100d19d70d520a282c5235efb70 /package/hostapd/patches/510-bring_down_interface.patch | |
parent | ec7be8a5b2db78dadc0d38ff3cfc51be89535fff (diff) |
hostapd: update to 20120326
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31080 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/patches/510-bring_down_interface.patch')
-rw-r--r-- | package/hostapd/patches/510-bring_down_interface.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/hostapd/patches/510-bring_down_interface.patch b/package/hostapd/patches/510-bring_down_interface.patch new file mode 100644 index 0000000000..1ebb006b8d --- /dev/null +++ b/package/hostapd/patches/510-bring_down_interface.patch @@ -0,0 +1,19 @@ +--- a/src/drivers/driver_nl80211.c ++++ b/src/drivers/driver_nl80211.c +@@ -6995,8 +6995,6 @@ static int wpa_driver_nl80211_set_mode(s + ret = nl80211_set_mode(drv, drv->ifindex, nlmode); + if (ret == -EACCES) + break; +- res = linux_set_iface_flags(drv->global->ioctl_sock, +- bss->ifname, 1); + if (res && !ret) + ret = -1; + else if (ret != -EBUSY) +@@ -7012,6 +7010,7 @@ static int wpa_driver_nl80211_set_mode(s + "interface is down"); + drv->nlmode = nlmode; + drv->ignore_if_down_event = 1; ++ linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1); + } + + done: |