From e3150acb1a97f8f6f45aafb28728755f7e52d88e Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Sun, 27 Jan 2008 20:30:50 +0000 Subject: [PATCH] Fix CRL logging. --- xmltooling/security/impl/InlineKeyResolver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); } } } -- 2.1.4