2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-31 22:35:35 +00:00

Bug 215207 - apparmor-profiles: lib-ld missing in the profile -- now that the apparmor-profiles package has removed the ld.so profiles, genprof/autodep shouldn't be automatically providing 'px' access

This commit is contained in:
Seth Arnold
2006-11-14 11:46:50 +00:00
parent 3b5cb9709e
commit 27df0a157c

View File

@@ -535,11 +535,7 @@ sub handle_binfmt ($$) {
chomp $library;
next unless $library;
if($library =~ /\/lib\/ld-.+/) {
$profile->{path}->{$library} = "mpx";
} else {
$profile->{path}->{$library} = "mr";
}
$profile->{path}->{$library} = "mr";
}
return $profile;