summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Goulish <mgoulish@apache.org>2010-05-24 19:02:03 +0000
committerMichael Goulish <mgoulish@apache.org>2010-05-24 19:02:03 +0000
commita2d7fd45b134ab9e7c28cb42e26a16fca29bbee3 (patch)
treebc079a2b73632f884d341bd410e5931fb8e69362
parentba91599c45eeb8f3578cd34092302b2394b9ea69 (diff)
downloadqpid-python-a2d7fd45b134ab9e7c28cb42e26a16fca29bbee3.tar.gz
The cmake build caught my omission of this unused arg.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@947764 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/broker/SaslAuthenticator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/SaslAuthenticator.cpp b/qpid/cpp/src/qpid/broker/SaslAuthenticator.cpp
index b54eb19971..e5102ea4b0 100644
--- a/qpid/cpp/src/qpid/broker/SaslAuthenticator.cpp
+++ b/qpid/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");
}