From e91dba06f9240451510a4542c463ef9d2cdb1f42 Mon Sep 17 00:00:00 2001 From: Nick Kralevich Date: Wed, 13 Apr 2016 07:49:28 -0700 Subject: [PATCH] change directory name external/sepolicy was renamed system/sepolicy Change-Id: Id27cd8c22d966958e481c9ed0171f637b3ffe2c0 --- services/core/java/com/android/server/pm/SELinuxMMAC.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/core/java/com/android/server/pm/SELinuxMMAC.java b/services/core/java/com/android/server/pm/SELinuxMMAC.java index aa10c084674ce..a6350fe8cf35a 100644 --- a/services/core/java/com/android/server/pm/SELinuxMMAC.java +++ b/services/core/java/com/android/server/pm/SELinuxMMAC.java @@ -92,7 +92,7 @@ public final class SELinuxMMAC { * MAC_PERMISSIONS class variable which is set at class load time which itself * is based on the USE_OVERRIDE_POLICY class variable. For further guidance on * the proper structure of a mac_permissions.xml file consult the source code - * located at external/sepolicy/mac_permissions.xml. + * located at system/sepolicy/mac_permissions.xml. * * @return boolean indicating if policy was correctly loaded. A value of false * typically indicates a structural problem with the xml or incorrectly @@ -373,7 +373,7 @@ public final class SELinuxMMAC { * {@link Policy#getMatchedSeinfo} method. To create an instance of this use the * {@link PolicyBuilder} pattern class, where each instance is validated against a set * of invariants before being built and returned. Each instance can be guaranteed to - * hold one valid policy stanza as outlined in the external/sepolicy/mac_permissions.xml + * hold one valid policy stanza as outlined in the system/sepolicy/mac_permissions.xml * file. *

* The following is an example of how to use {@link Policy.PolicyBuilder} to create a @@ -519,7 +519,7 @@ final class Policy { * A nested builder class to create {@link Policy} instances. A {@link Policy} * class instance represents one valid policy stanza found in a mac_permissions.xml * file. A valid policy stanza is defined to be a signer stanza which obeys the rules - * outlined in external/sepolicy/mac_permissions.xml. The {@link #build} method + * outlined in system/sepolicy/mac_permissions.xml. The {@link #build} method * ensures a set of invariants are upheld enforcing the correct stanza structure * before returning a valid Policy object. */