diff options
author | Denis Vlasenko | 2006-11-21 10:15:25 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-21 10:15:25 +0000 |
commit | 04291bc5aee1e020997894cfd497d14392ad2ced (patch) | |
tree | f9f70d597f2476efe5819b15e8d749725653773f /networking/udhcp/static_leases.c | |
parent | 3eb91c2e3594f379f357bfcc85105b6b76a11781 (diff) | |
download | busybox-04291bc5aee1e020997894cfd497d14392ad2ced.zip busybox-04291bc5aee1e020997894cfd497d14392ad2ced.tar.gz |
httpd: slight reduction of #ifdef forest
few other applets: #ifdef CONFIG_ -> #if ENABLE_
traceroute: fix exposed bugs
defconfig: update
Diffstat (limited to 'networking/udhcp/static_leases.c')
-rw-r--r-- | networking/udhcp/static_leases.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/static_leases.c b/networking/udhcp/static_leases.c index b53eac5..aabfb81 100644 --- a/networking/udhcp/static_leases.c +++ b/networking/udhcp/static_leases.c @@ -79,7 +79,7 @@ uint32_t reservedIp(struct static_lease *lease_struct, uint32_t ip) return return_val; } -#ifdef CONFIG_FEATURE_UDHCP_DEBUG +#if ENABLE_FEATURE_UDHCP_DEBUG /* Print out static leases just to check what's going on */ /* Takes the address of the pointer to the static_leases linked list */ void printStaticLeases(struct static_lease **arg) |