diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-20 01:42:37 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-20 01:42:37 +0200 |
commit | 1cbdc03411f286f4f4f27cfd3b28c56d364e4ae3 (patch) | |
tree | 7f6ad40689d3f60fccdec1938b9e009245fe7f5d /networking/udhcp/common.c | |
parent | 9e244c760042e764d3504dc94cf79b41938d9b1d (diff) |
udhcpc: remove -c CLIENTID, it is hard to use, -x 61:hexstring does the same better
function old new delta
packed_usage 27802 27808 +6
static.udhcpc_longopts 261 250 -11
udhcpc_main 2799 2780 -19
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/2 up/down: 6/-30) Total: -24 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.c')
-rw-r--r-- | networking/udhcp/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c index b6b274d91..e34f926bb 100644 --- a/networking/udhcp/common.c +++ b/networking/udhcp/common.c @@ -69,7 +69,7 @@ const struct dhcp_optflag dhcp_optflags[] = { { OPTION_U8 , 0x35 }, /* DHCP_MESSAGE_TYPE */ { OPTION_U16 , 0x39 }, /* DHCP_MAX_SIZE */ { OPTION_STRING , 0x3c }, /* DHCP_VENDOR */ -//FIXME: handling of this option is not exactly correct: + /* not really a string */ { OPTION_STRING , 0x3d }, /* DHCP_CLIENT_ID */ { 0, 0 } /* zeroed terminating entry */ }; |