summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Gohad <tgohad@mvista.com>2006-06-20 00:03:34 -0700
committerChris Wright <chrisw@sous-sol.org>2006-06-29 17:17:14 -0700
commitf67656ad55536533ebc33e3154184aeb53b379b8 (patch)
tree58202f7841644b69f83c15561c3ec27580b7a0eb
parent8fbc89242905b7645064d6946ac86d4bd77c55c5 (diff)
[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 <tgohad@mvista.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Chris Wright <chrisw@sous-sol.org>
-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 */