]> err.no Git - util-linux/commitdiff
use uint32_t instead of u_int32_t
authorFabian Groffen <grobian@gentoo.org>
Tue, 18 Jan 2011 16:52:07 +0000 (17:52 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 20 Jan 2011 22:50:00 +0000 (23:50 +0100)
Solaris doesn't have u_int32_t, use standards uint32_t instead

Signed-off-by: Fabian Groffen <grobian@gentoo.org>
login-utils/checktty.c
shlibs/blkid/src/topology/evms.c

index 0d1ec0efe7c9201be1f577ed22dcbe9f632fb3de..264cc6033cc1a9e9ccceb4ea811a030ed238a6a9 100644 (file)
@@ -15,6 +15,7 @@
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdint.h>
 #include <unistd.h>
 #include <time.h>
 #include <sys/stat.h>
@@ -235,15 +236,15 @@ hnmatch_ip6(const char *pat)
        /* compare */
        while (mask_len > 0) {
                if (mask_len < 32) {
-                       u_int32_t mask = htonl(~(0xffffffff >> mask_len));
+                       uint32_t mask = htonl(~(0xffffffff >> mask_len));
 
-                       if ((*(u_int32_t *)&addr.s6_addr[i] & mask) !=
-                           (*(u_int32_t *)&net.sin6_addr.s6_addr[i] & mask))
+                       if ((*(uint32_t *)&addr.s6_addr[i] & mask) !=
+                           (*(uint32_t *)&net.sin6_addr.s6_addr[i] & mask))
                                goto mismatch;
                        break;
                }
-               if (*(u_int32_t *)&addr.s6_addr[i] !=
-                   *(u_int32_t *)&net.sin6_addr.s6_addr[i])
+               if (*(uint32_t *)&addr.s6_addr[i] !=
+                   *(uint32_t *)&net.sin6_addr.s6_addr[i])
                        goto mismatch;
                i += 4;
                mask_len -= 32;
index 574d9f556cb884a36e99060775e6f903d12dc73f..a30d8df75476ea5875314d88867ab8c015857292 100644 (file)
 #define EVMS_MAJOR             117
 
 #ifndef _IOT__IOTBASE_u_int32_t
-#define _IOT__IOTBASE_u_int32_t IOT_SIMPLE(u_int32_t)
+#define _IOT__IOTBASE_u_int32_t IOT_SIMPLE(uint32_t)
 #endif
-#define _IOT_evms_stripe_info _IOT (_IOTS(u_int32_t), 2, 0, 0, 0, 0)
+#define _IOT_evms_stripe_info _IOT (_IOTS(uint32_t), 2, 0, 0, 0, 0)
 #define EVMS_GET_STRIPE_INFO   _IOR(EVMS_MAJOR, 0xF0, struct evms_stripe_info)
 
 struct evms_stripe_info {
-       u_int32_t       size;           /* stripe unit 512-byte blocks */
-       u_int32_t       width;          /* the number of stripe members or RAID data disks */
+       uint32_t        size;           /* stripe unit 512-byte blocks */
+       uint32_t        width;          /* the number of stripe members or RAID data disks */
 } evms_stripe_info;
 
 static int is_evms_device(dev_t devno)