hostapd: Remove hostapd_interface_init2()
This was an unnecessary wrapper functions for calling two functions from a single place in the code. It is cleaner to just call those two functions directly. Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
4a5deb9b9d
commit
c20cb023e2
1 changed files with 2 additions and 11 deletions
|
@ -265,16 +265,6 @@ hostapd_interface_init(struct hapd_interfaces *interfaces,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int hostapd_interface_init2(struct hostapd_iface *iface)
|
|
||||||
{
|
|
||||||
if (hostapd_driver_init(iface) ||
|
|
||||||
hostapd_setup_interface(iface))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* handle_term - SIGINT and SIGTERM handler to terminate hostapd process
|
* handle_term - SIGINT and SIGTERM handler to terminate hostapd process
|
||||||
*/
|
*/
|
||||||
|
@ -694,7 +684,8 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < interfaces.count; i++) {
|
for (i = 0; i < interfaces.count; i++) {
|
||||||
if (hostapd_interface_init2(interfaces.iface[i]) < 0)
|
if (hostapd_driver_init(interfaces.iface[i]) ||
|
||||||
|
hostapd_setup_interface(interfaces.iface[i]))
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue