aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r--networking/udhcp/dhcpc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index bd9e8fdc2..c206a5825 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -1337,7 +1337,10 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
1337 } 1337 }
1338 while (list_x) { 1338 while (list_x) {
1339 char *optstr = xstrdup(llist_pop(&list_x)); 1339 char *optstr = xstrdup(llist_pop(&list_x));
1340 udhcp_str2optset(optstr, &client_config.options, dhcp_optflags, dhcp_option_strings); 1340 udhcp_str2optset(optstr, &client_config.options,
1341 dhcp_optflags, dhcp_option_strings,
1342 /*dhcpv6:*/ 0
1343 );
1341 free(optstr); 1344 free(optstr);
1342 } 1345 }
1343 1346