From: Pablo Neira Ayuso Date: Sat, 24 Jul 2021 10:04:57 +0000 (+0200) Subject: src: fix nft_ctx_clear_include_paths in libnftables.map X-Git-Tag: v1.0.0~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c89fbc25102d126aa957e8a99d9ceb6ceaaf0193;p=thirdparty%2Fnftables.git src: fix nft_ctx_clear_include_paths in libnftables.map There a typo that prevents exposing the function as API. Fixes: 16543a0136c0 ("libnftables: export public symbols only") Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/libnftables.map b/src/libnftables.map index c0185349..46d64a38 100644 --- a/src/libnftables.map +++ b/src/libnftables.map @@ -1,7 +1,7 @@ LIBNFTABLES_1 { global: nft_ctx_add_include_path; - nft_ctx_clear_include_pat; + nft_ctx_clear_include_paths; nft_ctx_new; nft_ctx_buffer_output; nft_ctx_unbuffer_output;