aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEllen Arteca <emarteca@google.com>2024-02-23 18:58:33 +0000
committerEllen Arteca <emarteca@google.com>2024-02-26 09:14:18 +0000
commitcd26ca216218d5708eae4403a3d20eb0b01a39bb (patch)
tree8125952c877fbb1a1aebb2e6c593bfe3eaa7a9f9
parenta772618e5ca2ef248304c29fc7b47a7b27f9f920 (diff)
downloadselinux-cd26ca216218d5708eae4403a3d20eb0b01a39bb.tar.gz
The order the fields were printed in did not match the order in which their values are listed; likely a typo
Change-Id: I2e00216ef7e3cedd274fb16aa361637d9a98ba2c
-rw-r--r--libselinux/src/android/android_seapp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libselinux/src/android/android_seapp.c b/libselinux/src/android/android_seapp.c
index d1f50292..65f91607 100644
--- a/libselinux/src/android/android_seapp.c
+++ b/libselinux/src/android/android_seapp.c
@@ -615,14 +615,14 @@ int seapp_context_reload_internal(const path_alts_t *context_paths)
__FUNCTION__,
cur->isSystemServer ? "true" : "false",
cur->isEphemeralAppSet ? (cur->isEphemeralApp ? "true" : "false") : "null",
+ cur->isIsolatedComputeApp ? "true" : "false",
+ cur->isSdkSandboxAudit ? "true" : "false",
+ cur->isSdkSandboxNext ? "true" : "false",
cur->user.str,
cur->seinfo, cur->name.str,
cur->isPrivAppSet ? (cur->isPrivApp ? "true" : "false") : "null",
cur->minTargetSdkVersion,
cur->fromRunAs ? "true" : "false",
- cur->isIsolatedComputeApp ? "true" : "false",
- cur->isSdkSandboxAudit ? "true" : "false",
- cur->isSdkSandboxNext ? "true" : "false",
cur->domain, cur->type, cur->level,
levelFromName[cur->levelFrom]);
}