summaryrefslogtreecommitdiff
path: root/cpp/src/qpid
diff options
context:
space:
mode:
authorMichael Goulish <mgoulish@apache.org>2010-12-01 16:16:07 +0000
committerMichael Goulish <mgoulish@apache.org>2010-12-01 16:16:07 +0000
commite5ddc402681322fc0031b3d2bc39b1d75e8a1080 (patch)
treee51f1dc9347c8f48c972fbe94a1f43592fcc8642 /cpp/src/qpid
parent8e8d7782e5844b715de66e4baaaf1a455dec7bdb (diff)
downloadqpid-python-e5ddc402681322fc0031b3d2bc39b1d75e8a1080.tar.gz
Added new arg to Saslfactory::create
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1041071 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid')
-rw-r--r--cpp/src/qpid/client/windows/SaslFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/windows/SaslFactory.cpp b/cpp/src/qpid/client/windows/SaslFactory.cpp
index e662dd98b5..63c7fa3d1f 100644
--- a/cpp/src/qpid/client/windows/SaslFactory.cpp
+++ b/cpp/src/qpid/client/windows/SaslFactory.cpp
@@ -101,7 +101,7 @@ SaslFactory& SaslFactory::getInstance()
return *instance;
}
-std::auto_ptr<Sasl> SaslFactory::create( const std::string & username, const std::string & password, const std::string & serviceName, const std::string & hostName, int minSsf, int maxSsf )
+std::auto_ptr<Sasl> SaslFactory::create( const std::string & username, const std::string & password, const std::string & serviceName, const std::string & hostName, int minSsf, int maxSsf, bool )
{
std::auto_ptr<Sasl> sasl(new WindowsSasl( username, password, serviceName, hostName, minSsf, maxSsf ));
return sasl;