diff options
author | Denys Vlasenko | 2009-12-11 02:21:10 +0100 |
---|---|---|
committer | Denys Vlasenko | 2009-12-11 02:21:10 +0100 |
commit | 4662de0511487b4da965c4b2158bae318f3d80a8 (patch) | |
tree | 05647d5e10ec8ba1a0f50dbe396d2c04bda0c977 /networking/ifupdown.c | |
parent | 8656676a2199e2701e7e5656ef3d2092dedd9ba5 (diff) | |
download | busybox-4662de0511487b4da965c4b2158bae318f3d80a8.zip busybox-4662de0511487b4da965c4b2158bae318f3d80a8.tar.gz |
replace APP_xxDHCPxx with xxDHCPxx, it's more consistent with the rest
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r-- | networking/ifupdown.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index b16186e..d28c0b8 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -522,7 +522,7 @@ static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd, execfn *exec) bb_error_msg("no dhcp clients found"); return 0; } -#elif ENABLE_APP_UDHCPC +#elif ENABLE_UDHCPC static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd, execfn *exec) { #if ENABLE_FEATURE_IFUPDOWN_IP @@ -569,7 +569,7 @@ static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec) result += static_down(ifd, exec); return ((result == 3) ? 3 : 0); } -#elif ENABLE_APP_UDHCPC +#elif ENABLE_UDHCPC static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec) { int result; |