mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-09-01 14:55:10 +00:00
libapparmor: fix undefined reference to aa_split_overlay_str
The linkage of aa-load with the dynamic libapparmor fails with:
aa_load.c:273: undefined reference to `aa_split_overlay_str'
That is because when aa_split_overlay_str was added to libapparmor,
the function was not added to the library map.
Fixes: 50054ff0
("add aa_split_overlay_str")
Signed-off-by: Georgia Garcia <georgia.garcia@canonical.com>
This commit is contained in:
@@ -127,6 +127,7 @@ APPARMOR_3.0 {
|
|||||||
APPARMOR_3.1 {
|
APPARMOR_3.1 {
|
||||||
global:
|
global:
|
||||||
aa_features_check;
|
aa_features_check;
|
||||||
|
aa_split_overlay_str;
|
||||||
local:
|
local:
|
||||||
*;
|
*;
|
||||||
} APPARMOR_3.0;
|
} APPARMOR_3.0;
|
||||||
|
Reference in New Issue
Block a user