aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/files.c
diff options
context:
space:
mode:
authorruss <russ@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-12-16 02:30:53 +0000
committerruss <russ@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-12-16 02:30:53 +0000
commit3edddaf1703d26539b51f21a6a94d5c06a3747da (patch)
treea998a755c5f910484ce292ffe916f59027b89231 /networking/udhcp/files.c
parent57c9de176b7a8e5972f2e859152449e74931f8a3 (diff)
downloadbusybox-w32-3edddaf1703d26539b51f21a6a94d5c06a3747da.tar.gz
busybox-w32-3edddaf1703d26539b51f21a6a94d5c06a3747da.tar.bz2
busybox-w32-3edddaf1703d26539b51f21a6a94d5c06a3747da.zip
why the complication of a static string rather than a define? gcc isn't dumb
git-svn-id: svn://busybox.net/trunk/busybox@8097 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking/udhcp/files.c')
-rw-r--r--networking/udhcp/files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c
index 0597dc310..23d8c0094 100644
--- a/networking/udhcp/files.c
+++ b/networking/udhcp/files.c
@@ -167,7 +167,7 @@ static const struct config_keyword keywords[] = {
167 {"conflict_time",read_u32,&(server_config.conflict_time),"3600"}, 167 {"conflict_time",read_u32,&(server_config.conflict_time),"3600"},
168 {"offer_time", read_u32, &(server_config.offer_time), "60"}, 168 {"offer_time", read_u32, &(server_config.offer_time), "60"},
169 {"min_lease", read_u32, &(server_config.min_lease), "60"}, 169 {"min_lease", read_u32, &(server_config.min_lease), "60"},
170 {"lease_file", read_str, &(server_config.lease_file), leases_file}, 170 {"lease_file", read_str, &(server_config.lease_file), LEASES_FILE},
171 {"pidfile", read_str, &(server_config.pidfile), "/var/run/udhcpd.pid"}, 171 {"pidfile", read_str, &(server_config.pidfile), "/var/run/udhcpd.pid"},
172 {"notify_file", read_str, &(server_config.notify_file), ""}, 172 {"notify_file", read_str, &(server_config.notify_file), ""},
173 {"siaddr", read_ip, &(server_config.siaddr), "0.0.0.0"}, 173 {"siaddr", read_ip, &(server_config.siaddr), "0.0.0.0"},