From c338cfcf2f2087ff6081722672e46f1611af2cf4 Mon Sep 17 00:00:00 2001 From: Tushar Gohad Date: Mon, 18 Sep 2006 19:14:39 +0200 Subject: [PATCH] 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 Signed-off-by: David S. Miller Signed-off-by: Adrian Bunk --- include/linux/pfkeyv2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.39.5