diff options
author | Denis Vlasenko | 2008-11-06 00:49:59 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-11-06 00:49:59 +0000 |
commit | 35a064b67fc1954b95be06499a514a45c9f2e814 (patch) | |
tree | c3c2690d8c5c112ce744e17a906a860a0c6897d2 /networking/udhcp/common.h | |
parent | 202ac504e1addf0aa2debd53e7cd2411cc73ac8c (diff) | |
download | busybox-35a064b67fc1954b95be06499a514a45c9f2e814.zip busybox-35a064b67fc1954b95be06499a514a45c9f2e814.tar.gz |
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 de4a8c7..15f0d9a 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h @@ -18,7 +18,7 @@ # pragma GCC visibility push(hidden) #endif -#define DEFAULT_SCRIPT CONFIG_DHCPC_DEFAULT_SCRIPT +#define DEFAULT_SCRIPT CONFIG_UDHCPC_DEFAULT_SCRIPT extern const uint8_t MAC_BCAST_ADDR[6]; /* six all-ones */ @@ -97,7 +97,7 @@ int udhcp_listen_socket(/*uint32_t ip,*/ int port, const char *inf) FAST_FUNC; /* Returns 1 if no reply received */ int arpping(uint32_t test_ip, uint32_t from_ip, uint8_t *from_mac, const char *interface) FAST_FUNC; -#if ENABLE_FEATURE_UDHCP_DEBUG +#if ENABLE_UDHCP_DEBUG # define DEBUG(str, args...) bb_info_msg("### " str, ## args) #else # define DEBUG(str, args...) do {;} while (0) |