From 7ee7237704e9d3bcf63e5de58e3189fb7cbb1e51 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Wed, 18 Nov 2009 11:12:32 +0000 Subject: QPID-2188: Fixed typo in log messages git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@881720 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/ConnectionFactory.cpp | 2 +- cpp/src/qpid/broker/SecureConnectionFactory.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp') diff --git a/cpp/src/qpid/broker/ConnectionFactory.cpp b/cpp/src/qpid/broker/ConnectionFactory.cpp index 24d812aefb..ffb0b34b95 100644 --- a/cpp/src/qpid/broker/ConnectionFactory.cpp +++ b/cpp/src/qpid/broker/ConnectionFactory.cpp @@ -40,7 +40,7 @@ ConnectionFactory::create(ProtocolVersion v, sys::OutputControl& out, const std: unsigned int ) { if (broker.getConnectionCounter().allowConnection()) { - QPID_LOG(error, "Client max connection count limit exceeded: " << broker.getOptions().maxConnections << " connection refushed"); + QPID_LOG(error, "Client max connection count limit exceeded: " << broker.getOptions().maxConnections << " connection refused"); return 0; } if (v == ProtocolVersion(0, 10)) { diff --git a/cpp/src/qpid/broker/SecureConnectionFactory.cpp b/cpp/src/qpid/broker/SecureConnectionFactory.cpp index 9d92d26ac8..5a31dbceeb 100644 --- a/cpp/src/qpid/broker/SecureConnectionFactory.cpp +++ b/cpp/src/qpid/broker/SecureConnectionFactory.cpp @@ -41,7 +41,7 @@ SecureConnectionFactory::create(ProtocolVersion v, sys::OutputControl& out, cons unsigned int conn_ssf ) { if (broker.getConnectionCounter().allowConnection()) { - QPID_LOG(error, "Client max connection count limit exceeded: " << broker.getOptions().maxConnections << " connection refushed"); + QPID_LOG(error, "Client max connection count limit exceeded: " << broker.getOptions().maxConnections << " connection refused"); return 0; } if (v == ProtocolVersion(0, 10)) { -- cgit v1.2.1