aboutsummaryrefslogtreecommitdiff
path: root/networking/ifupdown.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-12-11 02:21:10 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-12-11 02:21:10 +0100
commit4662de0511487b4da965c4b2158bae318f3d80a8 (patch)
tree05647d5e10ec8ba1a0f50dbe396d2c04bda0c977 /networking/ifupdown.c
parent8656676a2199e2701e7e5656ef3d2092dedd9ba5 (diff)
downloadbusybox-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.c4
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
526static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd, execfn *exec) 526static 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
573static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec) 573static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec)
574{ 574{
575 int result; 575 int result;