diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-11 02:21:10 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-11 02:21:10 +0100 |
commit | 4662de0511487b4da965c4b2158bae318f3d80a8 (patch) | |
tree | 05647d5e10ec8ba1a0f50dbe396d2c04bda0c977 /networking/ifupdown.c | |
parent | 8656676a2199e2701e7e5656ef3d2092dedd9ba5 (diff) | |
download | busybox-w32-4662de0511487b4da965c4b2158bae318f3d80a8.tar.gz busybox-w32-4662de0511487b4da965c4b2158bae318f3d80a8.tar.bz2 busybox-w32-4662de0511487b4da965c4b2158bae318f3d80a8.zip |
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 b16186ec7..d28c0b867 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) | |||
522 | bb_error_msg("no dhcp clients found"); | 522 | bb_error_msg("no dhcp clients found"); |
523 | return 0; | 523 | return 0; |
524 | } | 524 | } |
525 | #elif ENABLE_APP_UDHCPC | 525 | #elif ENABLE_UDHCPC |
526 | static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd, execfn *exec) | 526 | static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd, execfn *exec) |
527 | { | 527 | { |
528 | #if ENABLE_FEATURE_IFUPDOWN_IP | 528 | #if ENABLE_FEATURE_IFUPDOWN_IP |
@@ -569,7 +569,7 @@ static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec) | |||
569 | result += static_down(ifd, exec); | 569 | result += static_down(ifd, exec); |
570 | return ((result == 3) ? 3 : 0); | 570 | return ((result == 3) ? 3 : 0); |
571 | } | 571 | } |
572 | #elif ENABLE_APP_UDHCPC | 572 | #elif ENABLE_UDHCPC |
573 | static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec) | 573 | static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec) |
574 | { | 574 | { |
575 | int result; | 575 | int result; |