aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEllen Arteca <emarteca@google.com>2024-02-27 11:46:40 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2024-02-27 11:46:40 +0000
commitb97284595c9fec7bd34c2bbf570afd969828386e (patch)
tree8125952c877fbb1a1aebb2e6c593bfe3eaa7a9f9
parenta7b5fa81daaac01d3a24caaecc2354e71d08d240 (diff)
parentcd26ca216218d5708eae4403a3d20eb0b01a39bb (diff)
downloadselinux-b97284595c9fec7bd34c2bbf570afd969828386e.tar.gz
The order the fields were printed in did not match the order in which their values are listed; likely a typo am: cd26ca2162
Original change: https://android-review.googlesource.com/c/platform/external/selinux/+/2976012 Change-Id: I515a85b6ae5eb66afe302ac15db733790d348df5 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-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]);
}