[git commit] udhcpc: allow -O OPT take numeric params
Denys Vlasenko
vda.linux at googlemail.com
Sat Jun 4 03:07:16 UTC 2011
commit: http://git.busybox.net/busybox/commit/?id=5d3aaceb790461dca3f770483bbccd161e78a728
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master
function old new delta
udhcpc_main 2623 2654 +31
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
networking/udhcp/dhcpc.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index 510c3a1..5d3291b 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -1134,8 +1134,11 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
client_config.no_default_options = 1;
while (list_O) {
char *optstr = llist_pop(&list_O);
- unsigned n = udhcp_option_idx(optstr);
- n = dhcp_optflags[n].code;
+ unsigned n = bb_strtou(optstr, NULL, 0);
+ if (errno || n > 254) {
+ n = udhcp_option_idx(optstr);
+ n = dhcp_optflags[n].code;
+ }
client_config.opt_mask[n >> 3] |= 1 << (n & 7);
}
while (list_x) {
--
1.7.3.4
More information about the busybox-cvs
mailing list