From 35f6cd327c2ec46296adf464f981cd6cddfec27b Mon Sep 17 00:00:00 2001 From: Varsha Rao Date: Fri, 16 Jun 2017 14:54:06 +0530 Subject: src: Pass stateless, numeric, ip2name and handle variables as structure members. libnftables library will be created soon. So declare numeric_output, stateless_output, ip2name_output and handle_output as members of structure output_ctx, instead of global variables. Rename these variables as following, numeric_output -> numeric stateless_output -> stateless ip2name_output -> ip2name handle_output -> handle Also add struct output_ctx *octx as member of struct netlink_ctx. Signed-off-by: Varsha Rao Signed-off-by: Pablo Neira Ayuso --- src/numgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/numgen.c') diff --git a/src/numgen.c b/src/numgen.c index 5c1d00a0..19a4a9ce 100644 --- a/src/numgen.c +++ b/src/numgen.c @@ -28,7 +28,7 @@ static const char *numgen_type_str(enum nft_ng_types type) return numgen_type[type]; } -static void numgen_expr_print(const struct expr *expr) +static void numgen_expr_print(const struct expr *expr, struct output_ctx *octx) { printf("numgen %s mod %u", numgen_type_str(expr->numgen.type), expr->numgen.mod); -- cgit v1.2.3