From 305b4707d134362c9229241b922c3b2286d3c150 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sun, 22 Mar 2015 20:59:42 +0100 Subject: src: restore static array with expression operations We cannot use __attribute__((constructor)) to register the supported expressions in runtime when the library is statically linked. This lead us to some explicit libnftnl_init() function that needs to be called from the main() function of the client program. This patch reverts 4dd0772 ("expr: use __attribute__((constructor)) to register expression"). Reported-by: Laurent Bercot Signed-off-by: Pablo Neira Ayuso --- src/expr/redir.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/expr/redir.c') diff --git a/src/expr/redir.c b/src/expr/redir.c index a1be181..b6adf88 100644 --- a/src/expr/redir.c +++ b/src/expr/redir.c @@ -254,8 +254,3 @@ struct expr_ops expr_ops_redir = { .xml_parse = nft_rule_expr_redir_xml_parse, .json_parse = nft_rule_expr_redir_json_parse, }; - -static void __init expr_redir_init(void) -{ - nft_expr_ops_register(&expr_ops_redir); -} -- cgit v1.2.3