summaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/dhcpd.c')
-rw-r--r--networking/udhcp/dhcpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpd.c b/networking/udhcp/dhcpd.c
index cc4cb9280..f594bad66 100644
--- a/networking/udhcp/dhcpd.c
+++ b/networking/udhcp/dhcpd.c
@@ -319,7 +319,7 @@ int udhcpd_main(int argc UNUSED_PARAM, char **argv)
319 bb_info_msg("%s (v"BB_VER") started", applet_name); 319 bb_info_msg("%s (v"BB_VER") started", applet_name);
320 320
321 option = find_option(server_config.options, DHCP_LEASE_TIME); 321 option = find_option(server_config.options, DHCP_LEASE_TIME);
322 server_config.max_lease_sec = LEASE_TIME; 322 server_config.max_lease_sec = DEFAULT_LEASE_TIME;
323 if (option) { 323 if (option) {
324 move_from_unaligned32(server_config.max_lease_sec, option->data + OPT_DATA); 324 move_from_unaligned32(server_config.max_lease_sec, option->data + OPT_DATA);
325 server_config.max_lease_sec = ntohl(server_config.max_lease_sec); 325 server_config.max_lease_sec = ntohl(server_config.max_lease_sec);