From ec02e05cf4d1bbb66ee31223f9e96c28bf3ae6f1 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Sat, 16 May 2015 13:31:38 +0200 Subject: src: Use stdint types everywhere Signed-off-by: Felix Janda Signed-off-by: Pablo Neira Ayuso --- src/conntrack/parse_mnl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/conntrack/parse_mnl.c') diff --git a/src/conntrack/parse_mnl.c b/src/conntrack/parse_mnl.c index 98b680b..5da9933 100644 --- a/src/conntrack/parse_mnl.c +++ b/src/conntrack/parse_mnl.c @@ -44,7 +44,7 @@ nfct_parse_ip_attr_cb(const struct nlattr *attr, void *data) static int nfct_parse_ip(const struct nlattr *attr, struct __nfct_tuple *tuple, - const int dir, u_int32_t *set) + const int dir, uint32_t *set) { struct nlattr *tb[CTA_IP_MAX+1] = {}; @@ -147,7 +147,7 @@ nfct_parse_proto_attr_cb(const struct nlattr *attr, void *data) static int nfct_parse_proto(const struct nlattr *attr, struct __nfct_tuple *tuple, - const int dir, u_int32_t *set) + const int dir, uint32_t *set) { struct nlattr *tb[CTA_PROTO_MAX+1] = {}; @@ -261,7 +261,7 @@ static int nfct_parse_tuple_attr_cb(const struct nlattr *attr, void *data) int nfct_parse_tuple(const struct nlattr *attr, struct __nfct_tuple *tuple, - int dir, u_int32_t *set) + int dir, uint32_t *set) { struct nlattr *tb[CTA_TUPLE_MAX+1] = {}; -- cgit v1.2.3