X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/e3d460c9de4426da6c630c3ae3f46173a99f82d8..dd5fb164cf5b32c462296bc65e289e100f74b59a:/OSX/libsecurity_cdsa_utilities/lib/acl_preauth.cpp?ds=inline diff --git a/OSX/libsecurity_cdsa_utilities/lib/acl_preauth.cpp b/OSX/libsecurity_cdsa_utilities/lib/acl_preauth.cpp index cd4a5f81..35d806ad 100644 --- a/OSX/libsecurity_cdsa_utilities/lib/acl_preauth.cpp +++ b/OSX/libsecurity_cdsa_utilities/lib/acl_preauth.cpp @@ -170,13 +170,13 @@ bool SourceAclSubject::SourceAclSubject::validates(const AclValidationContext &b if (!CSSM_ACL_AUTHORIZATION_IS_PREAUTH(auth)) // all muddled up; bail CssmError::throwMe(CSSM_ERRCODE_INVALID_ACL_SUBJECT_VALUE); uint32 slot = CSSM_ACL_AUTHORIZATION_PREAUTH_SLOT(auth); - secdebug("preauth", "using state %d@%p", slot, &env->store(this)); + secinfo("preauth", "using state %d@%p", slot, &env->store(this)); bool &accepted = env->store(this).attachment((void *)((size_t) slot)).accepted; if (!accepted) { - secdebug("preauth", "%p needs to authenticate its subject", this); + secinfo("preauth", "%p needs to authenticate its subject", this); SourceValidationContext ctx(baseCtx); if (mSourceSubject->validates(ctx)) { - secdebug("preauth", "%p pre-authenticated", this); + secinfo("preauth", "%p pre-authenticated", this); accepted = true; } }