summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2009-11-18 11:12:32 +0000
committerGordon Sim <gsim@apache.org>2009-11-18 11:12:32 +0000
commit7ee7237704e9d3bcf63e5de58e3189fb7cbb1e51 (patch)
tree402773022b8ab288e1e2ad98ea3e8a141b9692ae /cpp/src
parent90cc35f062ea1421af8304302ee3d7225b4ba2e2 (diff)
downloadqpid-python-7ee7237704e9d3bcf63e5de58e3189fb7cbb1e51.tar.gz
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
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/broker/ConnectionFactory.cpp2
-rw-r--r--cpp/src/qpid/broker/SecureConnectionFactory.cpp2
2 files changed, 2 insertions, 2 deletions
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)) {