aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/common.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-10-20 02:03:30 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-10-20 02:03:30 +0200
commitd3c5ab703bf6f42ec11fb770b86aaf927cf6b32d (patch)
tree528c8d14ed55d375ed3d43af6e5042e62b7bf124 /networking/udhcp/common.c
parent1cbdc03411f286f4f4f27cfd3b28c56d364e4ae3 (diff)
downloadbusybox-d3c5ab703bf6f42ec11fb770b86aaf927cf6b32d.tar.gz
udhcpc: remove now-unneeded definitions of vendor and client-id opts
function old new delta dhcp_optflags 68 64 -4 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.c')
-rw-r--r--networking/udhcp/common.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c
index e34f926bb..311f79e7e 100644
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
@@ -68,9 +68,10 @@ const struct dhcp_optflag dhcp_optflags[] = {
{ OPTION_IP , 0x32 }, /* DHCP_REQUESTED_IP */
{ OPTION_U8 , 0x35 }, /* DHCP_MESSAGE_TYPE */
{ OPTION_U16 , 0x39 }, /* DHCP_MAX_SIZE */
- { OPTION_STRING , 0x3c }, /* DHCP_VENDOR */
- /* not really a string */
- { OPTION_STRING , 0x3d }, /* DHCP_CLIENT_ID */
+//looks like these opts will work just fine even without these defs:
+// { OPTION_STRING , 0x3c }, /* DHCP_VENDOR */
+// /* not really a string: */
+// { OPTION_STRING , 0x3d }, /* DHCP_CLIENT_ID */
{ 0, 0 } /* zeroed terminating entry */
};