diff options
author | Michael Goulish <mgoulish@apache.org> | 2010-05-24 19:02:03 +0000 |
---|---|---|
committer | Michael Goulish <mgoulish@apache.org> | 2010-05-24 19:02:03 +0000 |
commit | b9e65f6bf0dddab93490792924ddf608eb22929e (patch) | |
tree | 87e2dd6eb4ae74e939bed95d269ce61c6de08a4a /cpp/src | |
parent | 666d6136f32b8cce2af18e59d1a2cc832f98eb21 (diff) | |
download | qpid-python-b9e65f6bf0dddab93490792924ddf608eb22929e.tar.gz |
The cmake build caught my omission of this unused arg.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@947764 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/broker/SaslAuthenticator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SaslAuthenticator.cpp b/cpp/src/qpid/broker/SaslAuthenticator.cpp index b54eb19971..e5102ea4b0 100644 --- a/cpp/src/qpid/broker/SaslAuthenticator.cpp +++ b/cpp/src/qpid/broker/SaslAuthenticator.cpp @@ -127,7 +127,7 @@ bool SaslAuthenticator::available(void) { return false; } -void SaslAuthenticator::init(const std::string& /*saslName*/) +void SaslAuthenticator::init(const std::string& /*saslName*/, std::string const & /*saslConfigPath*/ ) { throw Exception("Requested authentication but SASL unavailable"); } |