diff options
author | Denys Vlasenko | 2009-06-17 13:44:04 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-06-17 13:44:04 +0200 |
commit | 799d00e84c0328fead9b68ac33dc7dd11b34adb1 (patch) | |
tree | 79ec915e750e2d15953ad4443771f81bb2fe8576 /networking/udhcp/files.c | |
parent | 6947d2c7e194e3be31eed1c75260e15fca1a2568 (diff) | |
download | busybox-799d00e84c0328fead9b68ac33dc7dd11b34adb1.zip busybox-799d00e84c0328fead9b68ac33dc7dd11b34adb1.tar.gz |
udhcp: convert old-style logging in print_static_leases
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/files.c')
-rw-r--r-- | networking/udhcp/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index c3cc2b0..3559215 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c @@ -270,7 +270,7 @@ static int FAST_FUNC read_staticlease(const char *const_line, void *arg) add_static_lease(arg, (uint8_t*) &mac_bytes, ip); - if (ENABLE_UDHCP_DEBUG) print_static_leases(arg); + log_static_leases(arg); return 1; } |