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-w32-8ae4cab4a85eea297a0b8ea9aa65c3c23b0a664b.tar.gz
busybox-w32-8ae4cab4a85eea297a0b8ea9aa65c3c23b0a664b.tar.bz2
busybox-w32-8ae4cab4a85eea297a0b8ea9aa65c3c23b0a664b.zip
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 @@
17 17
18int xconnect(const char *host, const char *port) 18int xconnect(const char *host, const char *port)
19{ 19{
20#if CONFIG_FEATURE_IPV6 20#ifdef CONFIG_FEATURE_IPV6
21 struct addrinfo hints; 21 struct addrinfo hints;
22 struct addrinfo *res; 22 struct addrinfo *res;
23 struct addrinfo *addr_info; 23 struct addrinfo *addr_info;