aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpd.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-03-21 02:22:07 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-03-21 02:22:07 +0100
commit2e7aa928360eb9b1c90fa2356734cee794b66516 (patch)
tree58d8cb605c2a339076dc1e097c8137a8a2e176b7 /networking/udhcp/dhcpd.c
parente5ce91b41b657a0dbd1db442ebc47f4c935e7d1f (diff)
downloadbusybox-2e7aa928360eb9b1c90fa2356734cee794b66516.tar.gz
udhcp: tweak udhcpd.conf example and comments. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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)
bb_info_msg("%s (v"BB_VER") started", applet_name);
option = find_option(server_config.options, DHCP_LEASE_TIME);
- server_config.max_lease_sec = LEASE_TIME;
+ server_config.max_lease_sec = DEFAULT_LEASE_TIME;
if (option) {
move_from_unaligned32(server_config.max_lease_sec, option->data + OPT_DATA);
server_config.max_lease_sec = ntohl(server_config.max_lease_sec);