]> git.saurik.com Git - apple/security.git/blobdiff - OSX/libsecurity_cdsa_utilities/lib/acl_preauth.cpp
Security-58286.20.16.tar.gz
[apple/security.git] / OSX / libsecurity_cdsa_utilities / lib / acl_preauth.cpp
index cd4a5f812879fa3ceae6d727eebec312c1e8b4b8..35d806ad04d5627af4b9f593983a753a256d683d 100644 (file)
@@ -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<AclState>((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;
                        }
                }