diff options
author | Beniamino Galvani <bgalvani@redhat.com> | 2021-07-05 17:53:14 +0200 |
---|---|---|
committer | Beniamino Galvani <bgalvani@redhat.com> | 2021-07-05 21:18:35 +0200 |
commit | bb9c72a5436655ddc06143b38acc147ac8453b6f (patch) | |
tree | e9059f099d136ca9f191cdf893c07e2bc0a63d7d /src/libnm-client-impl/libnm.ver | |
parent | 44481bd7c7e2f9360f0f5f206770fd8e72a98f2a (diff) | |
download | NetworkManager-bb9c72a5436655ddc06143b38acc147ac8453b6f.tar.gz |
libnm: adjust symbol version after backporting ipvx.required-timeout to 1.32.4
libnm symbol 'nm_setting_ip_config_get_required_timeout' was
backported to branch 1.32 in commit 08ce20481caa ('all: add a new
ipv{4,6}.required-timeout property') in anticipation of 1.32.4. Add
the same symbol version so that an application linked against 1.32.4
also works with 1.34.0. We don't need a duplicate symbol version
because 1.34 is not yet released.
Diffstat (limited to 'src/libnm-client-impl/libnm.ver')
-rw-r--r-- | src/libnm-client-impl/libnm.ver | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/libnm-client-impl/libnm.ver b/src/libnm-client-impl/libnm.ver index 62de329f96..f6836afb18 100644 --- a/src/libnm-client-impl/libnm.ver +++ b/src/libnm-client-impl/libnm.ver @@ -1794,8 +1794,13 @@ global: nm_setting_wired_get_accept_all_mac_addresses; } libnm_1_30_0; +libnm_1_32_4 { +global: + nm_setting_ip_config_get_required_timeout; +} libnm_1_32_0; + libnm_1_34_0 { +global: nm_ip_routing_rule_get_uid_range; nm_ip_routing_rule_set_uid_range; - nm_setting_ip_config_get_required_timeout; -} libnm_1_32_0; +} libnm_1_32_4; |