[cpp-xmltooling COMMIT] /branches/REL_1/xmltooling/security/impl/ExplicitKeyTrustEngine.cpp

noreply at shibboleth.net noreply at shibboleth.net
Thu Jan 22 19:36:52 EST 2015


Author: scantor
Date: Thu Jan 22 19:36:52 2015
New Revision: 1045

URL: http://svn.shibboleth.net/view/cpp-xmltooling?rev=1045&view=rev
Log:
SSPCPP-616 - clean up concatenated string literals

Modified:
    branches/REL_1/xmltooling/security/impl/ExplicitKeyTrustEngine.cpp

Modified: branches/REL_1/xmltooling/security/impl/ExplicitKeyTrustEngine.cpp
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/security/impl/ExplicitKeyTrustEngine.cpp?rev=1045&r1=1044&r2=1045&view=diff
==============================================================================
--- branches/REL_1/xmltooling/security/impl/ExplicitKeyTrustEngine.cpp (original)
+++ branches/REL_1/xmltooling/security/impl/ExplicitKeyTrustEngine.cpp Thu Jan 22 19:36:52 2015
@@ -147,7 +147,7 @@
 #ifdef _DEBUG
     NDC ndc("validate");
 #endif
-    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine."EXPLICIT_KEY_TRUSTENGINE);
+    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine." EXPLICIT_KEY_TRUSTENGINE);
     
     vector<const Credential*> credentials;
     if (criteria) {
@@ -200,11 +200,11 @@
         NDC ndc("validate");
 #endif
     if (!certEE) {
-        Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine."EXPLICIT_KEY_TRUSTENGINE).error("unable to validate, end-entity certificate was null");
+        Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine." EXPLICIT_KEY_TRUSTENGINE).error("unable to validate, end-entity certificate was null");
         return false;
     }
     else if (certEE->getProviderName()!=DSIGConstants::s_unicodeStrPROVOpenSSL) {
-        Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine."EXPLICIT_KEY_TRUSTENGINE).error("only the OpenSSL XSEC provider is supported");
+        Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine." EXPLICIT_KEY_TRUSTENGINE).error("only the OpenSSL XSEC provider is supported");
         return false;
     }
 
@@ -221,7 +221,7 @@
 #ifdef _DEBUG
     NDC ndc("validate");
 #endif
-    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine."EXPLICIT_KEY_TRUSTENGINE);
+    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine." EXPLICIT_KEY_TRUSTENGINE);
     
     if (!certEE) {
         log.error("unable to validate, end-entity certificate was null");



More information about the commits mailing list