diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-07 17:05:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-07 17:05:44 +0000 |
commit | 239369b3685473094b2661c05634dfbe26f470b1 (patch) | |
tree | ed316732ba1856d03153fcba7a4e47fae92c22c5 /networking/udhcp/dhcpd.c | |
parent | a9801658ee4b7f5717d145818428452f864e1015 (diff) | |
download | busybox-w32-239369b3685473094b2661c05634dfbe26f470b1.tar.gz busybox-w32-239369b3685473094b2661c05634dfbe26f470b1.tar.bz2 busybox-w32-239369b3685473094b2661c05634dfbe26f470b1.zip |
Fix (hopefully) bug 976. Need more thorough audit.
Restore erroneously removed FEATURE_UDHCP_SYSLOG.
Diffstat (limited to 'networking/udhcp/dhcpd.c')
-rw-r--r-- | networking/udhcp/dhcpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpd.c b/networking/udhcp/dhcpd.c index 8715661b7..bee4ffdb3 100644 --- a/networking/udhcp/dhcpd.c +++ b/networking/udhcp/dhcpd.c | |||
@@ -55,7 +55,7 @@ int udhcpd_main(int argc, char *argv[]) | |||
55 | read_config(argc < 2 ? DHCPD_CONF_FILE : argv[1]); | 55 | read_config(argc < 2 ? DHCPD_CONF_FILE : argv[1]); |
56 | 56 | ||
57 | /* Start the log, sanitize fd's, and write a pid file */ | 57 | /* Start the log, sanitize fd's, and write a pid file */ |
58 | udhcp_start_log_and_pid("udhcpd", server_config.pidfile); | 58 | udhcp_start_log_and_pid(server_config.pidfile); |
59 | 59 | ||
60 | if ((option = find_option(server_config.options, DHCP_LEASE_TIME))) { | 60 | if ((option = find_option(server_config.options, DHCP_LEASE_TIME))) { |
61 | memcpy(&server_config.lease, option->data + 2, 4); | 61 | memcpy(&server_config.lease, option->data + 2, 4); |