mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
hostapd: fix non-multicall wpa_supplicant compile
SVN-Revision: 23073
This commit is contained in:
parent
e4e278d82a
commit
8cd8f6029c
@ -22,17 +22,19 @@
|
|||||||
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
||||||
while (RTA_OK(attr, attrlen)) {
|
while (RTA_OK(attr, attrlen)) {
|
||||||
if (attr->rta_type == IFLA_IFNAME) {
|
if (attr->rta_type == IFLA_IFNAME) {
|
||||||
@@ -1347,6 +1355,9 @@ static int wpa_driver_nl80211_init_nl(st
|
@@ -1347,6 +1355,11 @@ static int wpa_driver_nl80211_init_nl(st
|
||||||
eloop_register_read_sock(nl_socket_get_fd(drv->nl_handle_event),
|
eloop_register_read_sock(nl_socket_get_fd(drv->nl_handle_event),
|
||||||
wpa_driver_nl80211_event_receive, drv, ctx);
|
wpa_driver_nl80211_event_receive, drv, ctx);
|
||||||
|
|
||||||
|
+#ifdef HOSTAPD
|
||||||
+ drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
|
+ drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
|
||||||
+ drv->if_indices = drv->default_if_indices;
|
+ drv->if_indices = drv->default_if_indices;
|
||||||
|
+#endif
|
||||||
+
|
+
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err4:
|
err4:
|
||||||
@@ -4867,8 +4878,6 @@ static void *i802_init(struct hostapd_da
|
@@ -4867,8 +4880,6 @@ static void *i802_init(struct hostapd_da
|
||||||
br_ifindex = 0;
|
br_ifindex = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user