diff options
Diffstat (limited to 'networking/udhcp/files.c')
-rw-r--r-- | networking/udhcp/files.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index a69a7531b..f3899711c 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c | |||
@@ -268,9 +268,9 @@ static int FAST_FUNC read_staticlease(const char *const_line, void *arg) | |||
268 | ip_string = strtok_r(NULL, " \t", &line); | 268 | ip_string = strtok_r(NULL, " \t", &line); |
269 | read_nip(ip_string, &ip); | 269 | read_nip(ip_string, &ip); |
270 | 270 | ||
271 | addStaticLease(arg, (uint8_t*) &mac_bytes, ip); | 271 | add_static_lease(arg, (uint8_t*) &mac_bytes, ip); |
272 | 272 | ||
273 | if (ENABLE_UDHCP_DEBUG) printStaticLeases(arg); | 273 | if (ENABLE_UDHCP_DEBUG) print_static_leases(arg); |
274 | 274 | ||
275 | return 1; | 275 | return 1; |
276 | } | 276 | } |