From f67656ad55536533ebc33e3154184aeb53b379b8 Mon Sep 17 00:00:00 2001 From: Tushar Gohad Date: Tue, 20 Jun 2006 00:03:34 -0700 Subject: [PATCH] [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: Chris Wright --- 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.2