diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-06 00:49:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-06 00:49:59 +0000 |
commit | 35a064b67fc1954b95be06499a514a45c9f2e814 (patch) | |
tree | c3c2690d8c5c112ce744e17a906a860a0c6897d2 /networking/udhcp/common.h | |
parent | 202ac504e1addf0aa2debd53e7cd2411cc73ac8c (diff) | |
download | busybox-w32-35a064b67fc1954b95be06499a514a45c9f2e814.tar.gz busybox-w32-35a064b67fc1954b95be06499a514a45c9f2e814.tar.bz2 busybox-w32-35a064b67fc1954b95be06499a514a45c9f2e814.zip |
build system: tidying up CONFIG_xxx names (suggested by Rob)
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r-- | networking/udhcp/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index de4a8c75a..15f0d9a54 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h | |||
@@ -18,7 +18,7 @@ | |||
18 | # pragma GCC visibility push(hidden) | 18 | # pragma GCC visibility push(hidden) |
19 | #endif | 19 | #endif |
20 | 20 | ||
21 | #define DEFAULT_SCRIPT CONFIG_DHCPC_DEFAULT_SCRIPT | 21 | #define DEFAULT_SCRIPT CONFIG_UDHCPC_DEFAULT_SCRIPT |
22 | 22 | ||
23 | extern const uint8_t MAC_BCAST_ADDR[6]; /* six all-ones */ | 23 | extern const uint8_t MAC_BCAST_ADDR[6]; /* six all-ones */ |
24 | 24 | ||
@@ -97,7 +97,7 @@ int udhcp_listen_socket(/*uint32_t ip,*/ int port, const char *inf) FAST_FUNC; | |||
97 | /* Returns 1 if no reply received */ | 97 | /* Returns 1 if no reply received */ |
98 | int arpping(uint32_t test_ip, uint32_t from_ip, uint8_t *from_mac, const char *interface) FAST_FUNC; | 98 | int arpping(uint32_t test_ip, uint32_t from_ip, uint8_t *from_mac, const char *interface) FAST_FUNC; |
99 | 99 | ||
100 | #if ENABLE_FEATURE_UDHCP_DEBUG | 100 | #if ENABLE_UDHCP_DEBUG |
101 | # define DEBUG(str, args...) bb_info_msg("### " str, ## args) | 101 | # define DEBUG(str, args...) bb_info_msg("### " str, ## args) |
102 | #else | 102 | #else |
103 | # define DEBUG(str, args...) do {;} while (0) | 103 | # define DEBUG(str, args...) do {;} while (0) |