diff options
author | Denis Vlasenko | 2006-09-07 17:05:44 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-07 17:05:44 +0000 |
commit | 239369b3685473094b2661c05634dfbe26f470b1 (patch) | |
tree | ed316732ba1856d03153fcba7a4e47fae92c22c5 /networking/udhcp/dhcpd.c | |
parent | a9801658ee4b7f5717d145818428452f864e1015 (diff) | |
download | busybox-239369b3685473094b2661c05634dfbe26f470b1.zip busybox-239369b3685473094b2661c05634dfbe26f470b1.tar.gz |
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 8715661..bee4ffd 100644 --- a/networking/udhcp/dhcpd.c +++ b/networking/udhcp/dhcpd.c @@ -55,7 +55,7 @@ int udhcpd_main(int argc, char *argv[]) read_config(argc < 2 ? DHCPD_CONF_FILE : argv[1]); /* Start the log, sanitize fd's, and write a pid file */ - udhcp_start_log_and_pid("udhcpd", server_config.pidfile); + udhcp_start_log_and_pid(server_config.pidfile); if ((option = find_option(server_config.options, DHCP_LEASE_TIME))) { memcpy(&server_config.lease, option->data + 2, 4); |