summaryrefslogtreecommitdiffstats
path: root/src/conntrack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conntrack.c')
-rw-r--r--src/conntrack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conntrack.c b/src/conntrack.c
index 9d268c5..b8843d4 100644
--- a/src/conntrack.c
+++ b/src/conntrack.c
@@ -444,8 +444,8 @@ parse_inetaddr(const char *cp, struct addr_parse *parse)
}
union ct_address {
- u_int32_t v4;
- u_int32_t v6[4];
+ uint32_t v4;
+ uint32_t v6[4];
};
static int
@@ -472,7 +472,7 @@ nat_parse(char *arg, int portok, struct nf_conntrack *obj, int type)
colon = strchr(arg, ':');
if (colon) {
- u_int16_t port;
+ uint16_t port;
if (!portok)
exit_error(PARAMETER_PROBLEM,