keychain: be less verbose when loading certificates

This commit is contained in:
Martin Willi
2013-07-31 11:41:16 +02:00
parent a566c5f837
commit 83a0b74da8
@@ -69,10 +69,11 @@ static mem_cred_t* load_certs(private_keychain_creds_t *this, char *path)
SecKeychainItemRef item; SecKeychainItemRef item;
mem_cred_t *set; mem_cred_t *set;
OSStatus status; OSStatus status;
int loaded = 0;
set = mem_cred_create(); set = mem_cred_create();
DBG1(DBG_CFG, "loading certificates from %s:", path); DBG2(DBG_CFG, "loading certificates from %s:", path);
status = SecKeychainOpen(path, &keychain); status = SecKeychainOpen(path, &keychain);
if (status == errSecSuccess) if (status == errSecSuccess)
{ {
@@ -95,8 +96,9 @@ static mem_cred_t* load_certs(private_keychain_creds_t *this, char *path)
BUILD_END); BUILD_END);
if (cert) if (cert)
{ {
DBG1(DBG_CFG, " loaded '%Y'", cert->get_subject(cert)); DBG2(DBG_CFG, " loaded '%Y'", cert->get_subject(cert));
set->add_cert(set, TRUE, cert); set->add_cert(set, TRUE, cert);
loaded++;
} }
SecKeychainItemFreeAttributesAndData(NULL, data); SecKeychainItemFreeAttributesAndData(NULL, data);
} }
@@ -106,6 +108,7 @@ static mem_cred_t* load_certs(private_keychain_creds_t *this, char *path)
} }
CFRelease(keychain); CFRelease(keychain);
} }
DBG1(DBG_CFG, "loaded %d certificates from %s", loaded, path);
return set; return set;
} }