diff options
author | Denys Vlasenko | 2017-05-08 15:02:07 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-05-08 15:02:07 +0200 |
commit | 741bfa9a7219e5d1a5540eddeb0953788549e1da (patch) | |
tree | e320321da8a915f5ddfd187862c071548d6092e8 /networking/udhcp/d6_dhcpc.c | |
parent | c5d16e92c16cdd5ee57101e1ce88b5855e8ece6c (diff) | |
download | busybox-741bfa9a7219e5d1a5540eddeb0953788549e1da.zip busybox-741bfa9a7219e5d1a5540eddeb0953788549e1da.tar.gz |
udhcpc: fix "udhcpc -x hostname:<name> not working on nommu"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/d6_dhcpc.c')
-rw-r--r-- | networking/udhcp/d6_dhcpc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c index 3e08798..9eddbe2 100644 --- a/networking/udhcp/d6_dhcpc.c +++ b/networking/udhcp/d6_dhcpc.c @@ -1072,6 +1072,8 @@ int udhcpc6_main(int argc UNUSED_PARAM, char **argv) /* now it looks similar to udhcpd's config file line: * "optname optval", using the common routine: */ udhcp_str2optset(optstr, &client_config.options); + if (colon) + *colon = ':'; /* restore it for NOMMU reexec */ } if (d6_read_interface(client_config.interface, |