mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-27 21:50:32 +00:00
*: s/spaces/tabs/
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
f0b82142b2
commit
b4d035165f
@ -10,27 +10,27 @@ for that.
|
||||
We are doomed to have problems with ifup/ifdown. Just look as this code:
|
||||
|
||||
static const struct dhcp_client_t ext_dhcp_clients[] = {
|
||||
{ "dhcpcd", "<up cmd>", "<down cmd>" },
|
||||
{ "dhclient", ........ },
|
||||
{ "pump", ........ },
|
||||
{ "udhcpc", ........ },
|
||||
{ "dhcpcd", "<up cmd>", "<down cmd>" },
|
||||
{ "dhclient", ........ },
|
||||
{ "pump", ........ },
|
||||
{ "udhcpc", ........ },
|
||||
};
|
||||
|
||||
static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
|
||||
{
|
||||
#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
|
||||
int i ;
|
||||
for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
|
||||
if (exists_execable(ext_dhcp_clients[i].name))
|
||||
return execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
|
||||
}
|
||||
bb_error_msg("no dhcp clients found, using static interface shutdown");
|
||||
return static_down(ifd, exec);
|
||||
int i ;
|
||||
for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
|
||||
if (exists_execable(ext_dhcp_clients[i].name))
|
||||
return execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
|
||||
}
|
||||
bb_error_msg("no dhcp clients found, using static interface shutdown");
|
||||
return static_down(ifd, exec);
|
||||
#elif ENABLE_UDHCPC
|
||||
return execute("kill "
|
||||
"`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
|
||||
return execute("kill "
|
||||
"`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
|
||||
#else
|
||||
return 0; /* no dhcp support */
|
||||
return 0; /* no dhcp support */
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -473,7 +473,7 @@ void conf_parse(const char *name)
|
||||
menu_finalize(&rootmenu);
|
||||
for_all_symbols(i, sym) {
|
||||
sym_check_deps(sym);
|
||||
}
|
||||
}
|
||||
|
||||
sym_change_count = 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user