summaryrefslogtreecommitdiffstats
path: root/qa/ct_mark_filter.c
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2015-05-16 13:31:38 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2015-05-25 21:01:14 +0200
commitec02e05cf4d1bbb66ee31223f9e96c28bf3ae6f1 (patch)
tree571beaf3b2b81398d7eb8d7c84bf3eceaf58cb07 /qa/ct_mark_filter.c
parent32098096e759a2de36f104ac4ef79a14a328d8bf (diff)
src: Use stdint types everywhere
Signed-off-by: Felix Janda <felix.janda@posteo.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'qa/ct_mark_filter.c')
-rw-r--r--qa/ct_mark_filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/ct_mark_filter.c b/qa/ct_mark_filter.c
index 276344a..cd6dd27 100644
--- a/qa/ct_mark_filter.c
+++ b/qa/ct_mark_filter.c
@@ -12,7 +12,7 @@
static void tcp_echo_before_fin(const struct mnl_socket *nl,
const char *pre, const char *post)
{
- u_int8_t proto = IPPROTO_TCP;
+ uint8_t proto = IPPROTO_TCP;
sync_fifo(pre);
timeout.tv_sec = INIT_TIMEOUT;
@@ -26,7 +26,7 @@ static void tcp_echo_before_fin(const struct mnl_socket *nl,
static void tcp_echo_after_fin(const struct mnl_socket *nl,
const char *pre, const char *post)
{
- u_int8_t proto = IPPROTO_TCP;
+ uint8_t proto = IPPROTO_TCP;
sync_fifo(pre);
timeout.tv_sec = INIT_TIMEOUT;