diff options
author | Sam James <sam@gentoo.org> | 2022-02-24 19:45:42 +0000 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2022-02-25 00:34:37 +0100 |
commit | e98a9b83cd52c7c75bedb3dad46539b197ed17ba (patch) | |
tree | c07ca1417ff241d52abb1db3dab950ccdafb06f1 | |
parent | 9eb98b3bd5cf21fcbef04c46cfc078579e56ff17 (diff) |
libnftables.map: export new nft_ctx_{get,set}_optimize API
[ Remove incorrect symbol names were exported via .map file ]
Without this, we're not explicitly saying this is part of the
public API.
This new API was added in 1.0.2 and is used by e.g. the main
nft binary. Noticed when fixing the version-script option
(separate patch) which picked up this problem when .map
was missing symbols (related to when symbol visibility
options get set).
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r-- | src/libnftables.map | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libnftables.map b/src/libnftables.map index a511dd78..a46a3ad5 100644 --- a/src/libnftables.map +++ b/src/libnftables.map @@ -30,6 +30,6 @@ LIBNFTABLES_2 { } LIBNFTABLES_1; LIBNFTABLES_3 { - nft_set_optimize; - nft_get_optimize; + nft_ctx_set_optimize; + nft_ctx_get_optimize; } LIBNFTABLES_2; |