aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-08-27 22:29:43 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-08-27 22:29:43 +0000
commit18c93029fdd80cca3a6baafe125de2254ebe4cfc (patch)
tree4f09a65dbb055cdb5779e6ec80364bdab1527ebd /networking
parent8f0e34280342f069cbd026112a7012e5edb356b2 (diff)
downloadbusybox-w32-18c93029fdd80cca3a6baafe125de2254ebe4cfc.tar.gz
busybox-w32-18c93029fdd80cca3a6baafe125de2254ebe4cfc.tar.bz2
busybox-w32-18c93029fdd80cca3a6baafe125de2254ebe4cfc.zip
insmod: shrink
function old new delta obj_allocate_commons 488 462 -26 insmod_main 3830 3714 -116
Diffstat (limited to 'networking')
-rw-r--r--networking/udhcp/dhcpc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index 5caa00c83..92ebe3676 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -259,9 +259,10 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
259 if (opt & OPT_o) 259 if (opt & OPT_o)
260 client_config.no_default_options = 1; 260 client_config.no_default_options = 1;
261 while (list_O) { 261 while (list_O) {
262 int n = index_in_strings(dhcp_option_strings, llist_pop(&list_O)); 262 char *optstr = llist_pop(&list_O);
263 int n = index_in_strings(dhcp_option_strings, optstr);
263 if (n < 0) 264 if (n < 0)
264 bb_error_msg_and_die("unknown option '%s'", list_O->data); 265 bb_error_msg_and_die("unknown option '%s'", optstr);
265 n = dhcp_options[n].code; 266 n = dhcp_options[n].code;
266 client_config.opt_mask[n >> 3] |= 1 << (n & 7); 267 client_config.opt_mask[n >> 3] |= 1 << (n & 7);
267 } 268 }