summaryrefslogtreecommitdiffstats
path: root/include/utils.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2015-03-22 20:59:42 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2015-03-23 12:46:25 +0100
commit305b4707d134362c9229241b922c3b2286d3c150 (patch)
tree9e54e6faa05d5022f2fc294f9ec62eb0cb7ca0df /include/utils.h
parent8b2d59dadb920ed45dd347e2962ef4cf216d0c57 (diff)
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 <ska-devel@skarnet.org> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/utils.h')
-rw-r--r--include/utils.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/utils.h b/include/utils.h
index 1801108..380b020 100644
--- a/include/utils.h
+++ b/include/utils.h
@@ -15,7 +15,6 @@
# define EXPORT_SYMBOL
#endif
-#define __init __attribute__((constructor))
#define __noreturn __attribute__((__noreturn__))
#define xfree(ptr) free((void *)ptr);