aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2013-10-04 10:44:27 +0100
committerDavid Howells <dhowells@redhat.com>2013-10-04 10:44:27 +0100
commit425a74309737a8c96cdd8bb9189bb3dbb6a92a8d (patch)
tree1e7ecc601014ef36b3d64fdf3cd47bfa3b860c4c
parentf4c1a26b2a3252a67b68c7ecee58d90e451670d6 (diff)
downloadkeyutils-425a74309737a8c96cdd8bb9189bb3dbb6a92a8d.tar.gz
Lib: New symbols should go in a new library minor version
New symbols should go in a new library minor version, so move keyctl_get_persistent and find_key_by_type_and_desc to 1.5. Reported-by: Nalin Dahyabhai <nalin@redhat.com> Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r--keyutils.spec2
-rw-r--r--version.lds11
2 files changed, 10 insertions, 3 deletions
diff --git a/keyutils.spec b/keyutils.spec
index f1c9367..1ac5598 100644
--- a/keyutils.spec
+++ b/keyutils.spec
@@ -4,7 +4,7 @@
%define libdir /%{_lib}
%define usrlibdir %{_prefix}/%{_lib}
%define libapivermajor 1
-%define libapiversion %{libapivermajor}.4
+%define libapiversion %{libapivermajor}.5
# % define buildid .local
diff --git a/version.lds b/version.lds
index 5c86608..5f07463 100644
--- a/version.lds
+++ b/version.lds
@@ -46,11 +46,18 @@ KEYUTILS_1.4 {
keyctl_reject;
keyctl_instantiate_iov;
keyctl_invalidate;
- keyctl_get_persistent;
/* utility functions */
recursive_key_scan;
recursive_session_key_scan;
- find_key_by_type_and_desc;
} KEYUTILS_1.3;
+
+KEYUTILS_1.5 {
+ /* management functions */
+ keyctl_get_persistent;
+
+ /* utility functions */
+ find_key_by_type_and_desc;
+
+} KEYUTILS_1.4;