[cpp-opensaml COMMIT] in /branches/REL_2/saml: SAMLConfig.cpp binding/impl/ArtifactMap.cpp binding/impl/ClientCertAut...

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


Author: scantor
Date: Thu Jan 22 19:52:29 2015
New Revision: 777

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

Modified:
    branches/REL_2/saml/SAMLConfig.cpp
    branches/REL_2/saml/binding/impl/ArtifactMap.cpp
    branches/REL_2/saml/binding/impl/ClientCertAuthRule.cpp
    branches/REL_2/saml/binding/impl/MessageFlowRule.cpp
    branches/REL_2/saml/binding/impl/NullSecurityRule.cpp
    branches/REL_2/saml/binding/impl/SimpleSigningRule.cpp
    branches/REL_2/saml/binding/impl/XMLSigningRule.cpp
    branches/REL_2/saml/profile/impl/AudienceRestrictionRule.cpp
    branches/REL_2/saml/profile/impl/ConditionsRule.cpp
    branches/REL_2/saml/profile/impl/IgnoreRule.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1ArtifactDecoder.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1ArtifactEncoder.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1MessageDecoder.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1POSTDecoder.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1POSTEncoder.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1SOAPClient.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1SOAPDecoder.cpp
    branches/REL_2/saml/saml1/binding/impl/SAML1SOAPEncoder.cpp
    branches/REL_2/saml/saml1/profile/impl/AssertionValidator.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2ArtifactDecoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2ECPDecoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2ECPEncoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2MessageDecoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2POSTDecoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2POSTEncoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2Redirect.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2RedirectDecoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2RedirectEncoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2SOAPClient.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2SOAPDecoder.cpp
    branches/REL_2/saml/saml2/binding/impl/SAML2SOAPEncoder.cpp
    branches/REL_2/saml/saml2/core/impl/Assertions.cpp
    branches/REL_2/saml/saml2/metadata/impl/AbstractMetadataProvider.cpp
    branches/REL_2/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp
    branches/REL_2/saml/saml2/metadata/impl/ChainingMetadataProvider.cpp
    branches/REL_2/saml/saml2/metadata/impl/DiscoverableMetadataProvider.cpp
    branches/REL_2/saml/saml2/metadata/impl/DynamicMetadataProvider.cpp
    branches/REL_2/saml/saml2/metadata/impl/EntityAttributesEntityMatcher.cpp
    branches/REL_2/saml/saml2/metadata/impl/EntityAttributesMetadataFilter.cpp
    branches/REL_2/saml/saml2/metadata/impl/EntityRoleMetadataFilter.cpp
    branches/REL_2/saml/saml2/metadata/impl/FolderMetadataProvider.cpp
    branches/REL_2/saml/saml2/metadata/impl/MetadataProvider.cpp
    branches/REL_2/saml/saml2/metadata/impl/SignatureMetadataFilter.cpp
    branches/REL_2/saml/saml2/metadata/impl/WhitelistMetadataFilter.cpp
    branches/REL_2/saml/saml2/metadata/impl/XMLMetadataProvider.cpp
    branches/REL_2/saml/saml2/profile/impl/Assertion20Validator.cpp
    branches/REL_2/saml/saml2/profile/impl/BearerConfirmationRule.cpp
    branches/REL_2/saml/saml2/profile/impl/BrowserSSOProfile20Validator.cpp
    branches/REL_2/saml/saml2/profile/impl/DelegationRestrictionRule.cpp
    branches/REL_2/saml/signature/SignatureProfileValidator.cpp

Modified: branches/REL_2/saml/SAMLConfig.cpp
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/SAMLConfig.cpp?rev=777&r1=776&r2=777&view=diff
==============================================================================
--- branches/REL_2/saml/SAMLConfig.cpp (original)
+++ branches/REL_2/saml/SAMLConfig.cpp Thu Jan 22 19:52:29 2015
@@ -149,7 +149,7 @@
 #ifdef _DEBUG
     xmltooling::NDC ndc("init");
 #endif
-    Category& log=Category::getInstance(SAML_LOGCAT".Config");
+    Category& log=Category::getInstance(SAML_LOGCAT ".Config");
 
     Lock initLock(m_lock);
 
@@ -209,7 +209,7 @@
 
     Lock initLock(m_lock);
     if (m_initCount == 0) {
-        Category::getInstance(SAML_LOGCAT".Config").crit("term without corresponding init");
+        Category::getInstance(SAML_LOGCAT ".Config").crit("term without corresponding init");
         return;
     }
     else if (--m_initCount > 0) {
@@ -230,7 +230,7 @@
     if (termXMLTooling)
         XMLToolingConfig::getConfig().term();
     
-    Category::getInstance(SAML_LOGCAT".Config").info("%s library shutdown complete", PACKAGE_STRING);
+    Category::getInstance(SAML_LOGCAT ".Config").info("%s library shutdown complete", PACKAGE_STRING);
 }
 
 void SAMLInternalConfig::generateRandomBytes(void* buf, unsigned int len)

Modified: branches/REL_2/saml/binding/impl/ArtifactMap.cpp
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/binding/impl/ArtifactMap.cpp?rev=777&r1=776&r2=777&view=diff
==============================================================================

[... 938 lines stripped ...]


More information about the commits mailing list