aboutsummaryrefslogtreecommitdiff
path: root/libbb/xconnect.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-26 09:02:06 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-26 09:02:06 +0000
commit8ae4cab4a85eea297a0b8ea9aa65c3c23b0a664b (patch)
tree8bdc5ce06345033fdb627a10abf4c3cd6b924e82 /libbb/xconnect.c
parentc5dced17c55134252928c728a1ae15f038211df5 (diff)
downloadbusybox-8ae4cab4a85eea297a0b8ea9aa65c3c23b0a664b.tar.gz
use #ifdef CONFIG_* instead of #if CONFIG_*
Diffstat (limited to 'libbb/xconnect.c')
-rw-r--r--libbb/xconnect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xconnect.c b/libbb/xconnect.c
index f3a1b4462..bc6505a40 100644
--- a/libbb/xconnect.c
+++ b/libbb/xconnect.c
@@ -17,7 +17,7 @@
int xconnect(const char *host, const char *port)
{
-#if CONFIG_FEATURE_IPV6
+#ifdef CONFIG_FEATURE_IPV6
struct addrinfo hints;
struct addrinfo *res;
struct addrinfo *addr_info;