From 7feece21f72ebf4633048b2dd447e31da30819fb Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Tue, 8 May 2018 13:08:35 +0200 Subject: libnftables: Make some functions globally accessible This removes static flag and adds header prototype for the following functions: * must_print_eq_op() from src/expression.c * fib_result_str() from src/fib.c * set_policy2str() and chain_policy2str from src/rule.c In fib.h, include linux/netfilter/nf_tables.h to make sure enum nft_fib_result is known when including this file. Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- src/expression.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/expression.c') diff --git a/src/expression.c b/src/expression.c index c3b6fb22..3c5ea0ff 100644 --- a/src/expression.c +++ b/src/expression.c @@ -558,7 +558,7 @@ static void binop_arg_print(const struct expr *op, const struct expr *arg, nft_print(octx, ")"); } -static bool must_print_eq_op(const struct expr *expr) +bool must_print_eq_op(const struct expr *expr) { return expr->left->ops->type == EXPR_BINOP; } -- cgit v1.2.3