diff options
Diffstat (limited to 'networking/udhcp/clientpacket.c')
-rw-r--r-- | networking/udhcp/clientpacket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/udhcp/clientpacket.c b/networking/udhcp/clientpacket.c index ec96601cb..c5e1c210b 100644 --- a/networking/udhcp/clientpacket.c +++ b/networking/udhcp/clientpacket.c | |||
@@ -78,6 +78,7 @@ static void init_packet(struct dhcpMessage *packet, char type) | |||
78 | memcpy(packet->chaddr, client_config.arp, 6); | 78 | memcpy(packet->chaddr, client_config.arp, 6); |
79 | add_option_string(packet->options, client_config.clientid); | 79 | add_option_string(packet->options, client_config.clientid); |
80 | if (client_config.hostname) add_option_string(packet->options, client_config.hostname); | 80 | if (client_config.hostname) add_option_string(packet->options, client_config.hostname); |
81 | if (client_config.fqdn) add_option_string(packet->options, client_config.fqdn); | ||
81 | add_option_string(packet->options, (uint8_t *) &vendor_id); | 82 | add_option_string(packet->options, (uint8_t *) &vendor_id); |
82 | } | 83 | } |
83 | 84 | ||