From 9a0b147fce9af6609e8b1ce1338aaec2dd369ebc Mon Sep 17 00:00:00 2001 From: Michael Goulish Date: Tue, 26 Oct 2010 15:25:40 +0000 Subject: This code's purpose was only to print out the sasl version into the logs so that I could grep for it in the sasl_fed test. But it is breaking the windows build. So I am backing it out, and temporarily disabling the sasl_fed test until I can implement something a little less grotesque. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1027594 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/Broker.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'cpp/src/qpid/broker') diff --git a/cpp/src/qpid/broker/Broker.cpp b/cpp/src/qpid/broker/Broker.cpp index 7f036ab6fd..c93949e33f 100644 --- a/cpp/src/qpid/broker/Broker.cpp +++ b/cpp/src/qpid/broker/Broker.cpp @@ -55,8 +55,6 @@ #include "qpid/Url.h" #include "qpid/Version.h" -#include "sasl/sasl.h" - #include #include @@ -273,9 +271,7 @@ Broker::Broker(const Broker::Options& conf) : */ if (conf.auth) { SaslAuthenticator::init(qpid::saslName, conf.saslConfigPath); - int saslVersion = (SASL_VERSION_MAJOR << 16) + (SASL_VERSION_MINOR << 8) + - SASL_VERSION_STEP; - QPID_LOG(info, "SASL enabled : version " << saslVersion); + QPID_LOG(info, "SASL enabled"); } else { QPID_LOG(notice, "SASL disabled: No Authentication Performed"); } -- cgit v1.2.1