diff options
| author | Michael Goulish <mgoulish@apache.org> | 2010-12-01 16:16:07 +0000 |
|---|---|---|
| committer | Michael Goulish <mgoulish@apache.org> | 2010-12-01 16:16:07 +0000 |
| commit | e5ddc402681322fc0031b3d2bc39b1d75e8a1080 (patch) | |
| tree | e51f1dc9347c8f48c972fbe94a1f43592fcc8642 /cpp/src/qpid | |
| parent | 8e8d7782e5844b715de66e4baaaf1a455dec7bdb (diff) | |
| download | qpid-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.cpp | 2 |
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; |
