diff options
author | Denis Vlasenko | 2008-06-25 09:53:17 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-06-25 09:53:17 +0000 |
commit | 7049ff8696c3c2a1be0f9901d7e2473568b8f918 (patch) | |
tree | c952ee767508bb76c25d6269a298aa16cad99b82 /networking/udhcp | |
parent | f26e3d2e41cc7d2fabcf5c2e777306c36a8d5868 (diff) | |
download | busybox-7049ff8696c3c2a1be0f9901d7e2473568b8f918.zip busybox-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.gz |
whitespace fixes. no code changes
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/clientpacket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/clientpacket.c b/networking/udhcp/clientpacket.c index c562c12..3e45619 100644 --- a/networking/udhcp/clientpacket.c +++ b/networking/udhcp/clientpacket.c @@ -64,7 +64,7 @@ static void add_param_req_option(struct dhcpMessage *packet) for (i = 0; (c = dhcp_options[i].code) != 0; i++) { if (((dhcp_options[i].flags & OPTION_REQ) - && !client_config.no_default_options) + && !client_config.no_default_options) || (client_config.opt_mask[c >> 3] & (1 << (c & 7))) ) { packet->options[end + OPT_DATA + len] = c; |