30 lines
859 B
Diff
30 lines
859 B
Diff
|
From 9456297275987dedefe2e8ad508360be9d9f9e7f Mon Sep 17 00:00:00 2001
|
||
|
From: Petr Lautrbach <plautrba@redhat.com>
|
||
|
Date: Tue, 23 Nov 2021 11:31:08 +0100
|
||
|
Subject: [PATCH] libselinux: Fix selinux_restorecon_parallel symbol version
|
||
|
|
||
|
selinux_restorecon_parallel was originally proposed before 3.3, but it
|
||
|
was merged after release so it will be introduced in version 3.4.
|
||
|
|
||
|
Signed-off-by: Petr Lautrbach <plautrba@redhat.com>
|
||
|
---
|
||
|
libselinux/src/libselinux.map | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/libselinux/src/libselinux.map b/libselinux/src/libselinux.map
|
||
|
index d138e951ef0d..4acf1caacb55 100644
|
||
|
--- a/libselinux/src/libselinux.map
|
||
|
+++ b/libselinux/src/libselinux.map
|
||
|
@@ -241,7 +241,7 @@ LIBSELINUX_1.0 {
|
||
|
*;
|
||
|
};
|
||
|
|
||
|
-LIBSELINUX_3.3 {
|
||
|
+LIBSELINUX_3.4 {
|
||
|
global:
|
||
|
selinux_restorecon_parallel;
|
||
|
} LIBSELINUX_1.0;
|
||
|
--
|
||
|
2.33.1
|
||
|
|