aboutsummaryrefslogtreecommitdiff
path: root/libbb/inet_common.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-26 02:40:56 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-26 02:40:56 +0000
commitd7fb1b372c7f494f623c687756a7fef945383814 (patch)
treeea9ec84f4401e697e2644f8378124e2778a7d7d6 /libbb/inet_common.c
parent2801eb925d957361c78dbdcf539cf7c33f0741a9 (diff)
downloadbusybox-d7fb1b372c7f494f623c687756a7fef945383814.tar.gz
Use #ifdef instead of #if
Diffstat (limited to 'libbb/inet_common.c')
-rw-r--r--libbb/inet_common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libbb/inet_common.c b/libbb/inet_common.c
index c7bf409c4..52fd1349e 100644
--- a/libbb/inet_common.c
+++ b/libbb/inet_common.c
@@ -4,7 +4,7 @@
*
* Heavily modified by Manuel Novoa III Mar 12, 2001
*
- * Version: $Id: inet_common.c,v 1.3 2002/07/03 11:46:36 andersen Exp $
+ * Version: $Id: inet_common.c,v 1.4 2002/11/26 02:35:15 bug1 Exp $
*
*/
@@ -17,7 +17,7 @@
#include "libbb.h"
#ifdef DEBUG
-#include <resolv.h>
+# include <resolv.h>
#endif
@@ -178,7 +178,7 @@ int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
return (0);
}
-#if CONFIG_FEATURE_IPV6
+#ifdef CONFIG_FEATURE_IPV6
int INET6_resolve(char *name, struct sockaddr_in6 *sin6)
{
@@ -199,7 +199,7 @@ int INET6_resolve(char *name, struct sockaddr_in6 *sin6)
}
#ifndef IN6_IS_ADDR_UNSPECIFIED
-#define IN6_IS_ADDR_UNSPECIFIED(a) \
+# define IN6_IS_ADDR_UNSPECIFIED(a) \
(((__u32 *) (a))[0] == 0 && ((__u32 *) (a))[1] == 0 && \
((__u32 *) (a))[2] == 0 && ((__u32 *) (a))[3] == 0)
#endif