summaryrefslogtreecommitdiffstats
path: root/src/expect/build.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 /src/expect/build.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 'src/expect/build.c')
-rw-r--r--src/expect/build.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/expect/build.c b/src/expect/build.c
index d480fad..da59022 100644
--- a/src/expect/build.c
+++ b/src/expect/build.c
@@ -52,11 +52,11 @@ static void __build_expectfn(struct nfnlhdr *req,
int __build_expect(struct nfnl_subsys_handle *ssh,
struct nfnlhdr *req,
size_t size,
- u_int16_t type,
- u_int16_t flags,
+ uint16_t type,
+ uint16_t flags,
const struct nf_expect *exp)
{
- u_int8_t l3num;
+ uint8_t l3num;
if (test_bit(ATTR_ORIG_L3PROTO, exp->master.set))
l3num = exp->master.orig.l3protonum;