summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Gohad <tgohad@mvista.com>2006-09-18 19:14:39 +0200
committerAdrian Bunk <bunk@stusta.de>2006-09-18 19:14:39 +0200
commitc338cfcf2f2087ff6081722672e46f1611af2cf4 (patch)
tree87d00a3f932fbea0d7ddbd7985378b4d08967cab
parent102aae6fa52893a6843403f7055aba767f296da5 (diff)
PFKEYV2: Fix inconsistent typing in struct sadb_x_kmprivate.
Fixes inconsistent use of "uint32_t" vs. "u_int32_t". Fix pfkeyv2 userspace builds. Signed-off-by: Tushar Gohad <tgohad@mvista.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Adrian Bunk <bunk@stusta.de>
-rw-r--r--include/linux/pfkeyv2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pfkeyv2.h b/include/linux/pfkeyv2.h
index bac0fb389cf1..d5dd471da225 100644
--- a/include/linux/pfkeyv2.h
+++ b/include/linux/pfkeyv2.h
@@ -159,7 +159,7 @@ struct sadb_spirange {
struct sadb_x_kmprivate {
uint16_t sadb_x_kmprivate_len;
uint16_t sadb_x_kmprivate_exttype;
- u_int32_t sadb_x_kmprivate_reserved;
+ uint32_t sadb_x_kmprivate_reserved;
} __attribute__((packed));
/* sizeof(struct sadb_x_kmprivate) == 8 */