From: Fabian Groffen Date: Tue, 18 Jan 2011 16:52:07 +0000 (+0100) Subject: use uint32_t instead of u_int32_t X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=665c289a069493ad7f659c5c57765e246103c883;p=util-linux use uint32_t instead of u_int32_t Solaris doesn't have u_int32_t, use standards uint32_t instead Signed-off-by: Fabian Groffen --- diff --git a/login-utils/checktty.c b/login-utils/checktty.c index 0d1ec0ef..264cc603 100644 --- a/login-utils/checktty.c +++ b/login-utils/checktty.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include @@ -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; diff --git a/shlibs/blkid/src/topology/evms.c b/shlibs/blkid/src/topology/evms.c index 574d9f55..a30d8df7 100644 --- a/shlibs/blkid/src/topology/evms.c +++ b/shlibs/blkid/src/topology/evms.c @@ -25,14 +25,14 @@ #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)