diff options
Diffstat (limited to 'discover')
-rw-r--r-- | discover/network.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/discover/network.c b/discover/network.c index 36807f0..1801710 100644 --- a/discover/network.c +++ b/discover/network.c @@ -228,7 +228,6 @@ static void configure_interface_dhcp(struct interface *interface) const char *argv[] = { pb_system_apps.udhcpc, "-R", - "-n", "-f", "-O", "pxeconffile", "-O", "pxepathprefix", @@ -245,7 +244,7 @@ static void configure_interface_dhcp(struct interface *interface) if (platform && platform->dhcp_arch_id != 0xffff) snprintf(id, sizeof(id), "0x5d:%04x", platform->dhcp_arch_id); else - argv[12] = NULL; + argv[11] = NULL; process = process_create(interface); |