The order the fields were printed in did not match the order in which their values are listed; likely a typo

Change-Id: I2e00216ef7e3cedd274fb16aa361637d9a98ba2c
This commit is contained in:
Ellen Arteca 2024-02-23 18:58:33 +00:00
parent a772618e5c
commit cd26ca2162

View file

@ -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]);
}