aboutsummaryrefslogtreecommitdiff
path: root/docs
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 /docs
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 'docs')
-rw-r--r--docs/ifupdown_design.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ifupdown_design.txt b/docs/ifupdown_design.txt
index 9df579289..8008e4507 100644
--- a/docs/ifupdown_design.txt
+++ b/docs/ifupdown_design.txt
@@ -26,7 +26,7 @@ static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
26 } 26 }
27 bb_error_msg("no dhcp clients found, using static interface shutdown"); 27 bb_error_msg("no dhcp clients found, using static interface shutdown");
28 return static_down(ifd, exec); 28 return static_down(ifd, exec);
29#elif ENABLE_APP_UDHCPC 29#elif ENABLE_UDHCPC
30 return execute("kill " 30 return execute("kill "
31 "`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec); 31 "`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
32#else 32#else