From: cantor Date: Sun, 27 Jan 2008 20:30:50 +0000 (+0000) Subject: Fix CRL logging. X-Git-Tag: 1.4.1~370 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fxmltooling.git;a=commitdiff_plain;h=0850bb959df9d06e2a99ae6c21db00bb2b6788e5 Fix CRL logging. git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/trunk@458 de75baf8-a10c-0410-a50a-987c0e22f00f --- diff --git a/xmltooling/security/impl/InlineKeyResolver.cpp b/xmltooling/security/impl/InlineKeyResolver.cpp index f0da979..deaf595 100644 --- a/xmltooling/security/impl/InlineKeyResolver.cpp +++ b/xmltooling/security/impl/InlineKeyResolver.cpp @@ -301,10 +301,10 @@ bool InlineCredential::resolveCRL(const KeyInfo* keyInfo) } catch(XSECException& e) { auto_ptr_char temp(e.getMsg()); - log.error("caught XML-Security exception loading certificate: %s", temp.get()); + log.error("caught XML-Security exception loading CRL: %s", temp.get()); } catch(XSECCryptoException& e) { - log.error("caught XML-Security exception loading certificate: %s", e.getMsg()); + log.error("caught XML-Security exception loading CRL: %s", e.getMsg()); } } }