[cpp-xmltooling] branch master updated: Header and c'tor fixes.

Scott Cantor cantor.2 at osu.edu
Tue May 1 23:35:27 EDT 2018


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository cpp-xmltooling.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-xmltooling.git;a=commit;h=24a6eb00709c12a6e0d8ca0a4e4900bdd08dcb14

The following commit(s) were added to refs/heads/master by this push:
       new  24a6eb0   Header and c'tor fixes.
24a6eb0 is described below

commit 24a6eb00709c12a6e0d8ca0a4e4900bdd08dcb14
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue May 1 23:35:23 2018 -0400

    Header and c'tor fixes.
---
 xmltooling/security/impl/VersionedDataSealerKeyStrategy.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xmltooling/security/impl/VersionedDataSealerKeyStrategy.cpp b/xmltooling/security/impl/VersionedDataSealerKeyStrategy.cpp
index 85c3082..aa5b0c0 100644
--- a/xmltooling/security/impl/VersionedDataSealerKeyStrategy.cpp
+++ b/xmltooling/security/impl/VersionedDataSealerKeyStrategy.cpp
@@ -36,7 +36,7 @@
 
 #include <map>
 #include <fstream>
-#include <boost/smart_ptr/shared_ptr.hpp>
+#include <boost/shared_ptr.hpp>
 #include <xercesc/util/Base64.hpp>
 
 using namespace xmltooling::logging;
@@ -117,7 +117,7 @@ void VersionedDataSealerKeyStrategy::load()
 		return;
 	m_log.info("loading secret keys from %s (%s)", local ? "local file" : "URL", source.c_str());
 	if (local) {
-		ifstream in(source);
+		ifstream in(source.c_str());
 		load(in);
 	}
 	else {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list