- use uint32_t instead of __u32
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 19 May 2006 12:44:16 +0000 (12:44 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 19 May 2006 12:44:16 +0000 (12:44 -0000)
  Thanks to Rich Felker for pointing this out.

libbb/inet_common.c

index 3ff81974259d438841ce917d0c9f056928abe8e6..ca0ef70524687c01d40a978e94cde79fdc57c3b9 100644 (file)
@@ -206,8 +206,8 @@ int INET6_resolve(const char *name, struct sockaddr_in6 *sin6)
 
 #ifndef IN6_IS_ADDR_UNSPECIFIED
 # define IN6_IS_ADDR_UNSPECIFIED(a) \
-       (((__u32 *) (a))[0] == 0 && ((__u32 *) (a))[1] == 0 && \
-        ((__u32 *) (a))[2] == 0 && ((__u32 *) (a))[3] == 0)
+       (((uint32_t *) (a))[0] == 0 && ((uint32_t *) (a))[1] == 0 && \
+        ((uint32_t *) (a))[2] == 0 && ((uint32_t *) (a))[3] == 0)
 #endif