summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-06-13 20:19:21 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-06-13 20:19:21 +0000
commit26cf78cfa8faace0e9b8df00a5a20ae964236668 (patch)
treeb9188580840cbf7bae2845d5d24d791b84c69eed
parent370936fd02a3a6e633fd756c5965fa2e03c660a8 (diff)
downloadqpid-python-26cf78cfa8faace0e9b8df00a5a20ae964236668.tar.gz
QPID-4923: Windows C++ broker should use --ssl-port option to select ssl port
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1492845 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/src/qpid/broker/windows/SslProtocolFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp b/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
index 368af28286..fa15c03b39 100644
--- a/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
+++ b/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
@@ -125,7 +125,7 @@ static struct SslPlugin : public Plugin {
boost::shared_ptr<SslProtocolFactory> protocol(new SslProtocolFactory(opts, options, broker->getTimer()));
uint16_t port =
protocol->listen(opts.listenInterfaces,
- boost::lexical_cast<std::string>(opts.port), opts.connectionBacklog,
+ boost::lexical_cast<std::string>(options.port), opts.connectionBacklog,
&createSocket);
QPID_LOG(notice, "Listening for SSL connections on TCP port " << port);
broker->registerTransport("ssl", protocol, protocol, port);