summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2012-10-17 18:15:26 +0000
committerCharles E. Rolke <chug@apache.org>2012-10-17 18:15:26 +0000
commit43e03e424f6f7b64b87fe6ede41e0bc24e0e8f55 (patch)
tree684257484273b8d8624d5e5ae909c20daffb90cc /qpid/cpp
parentb2fc21c25f2390dc6a3914cf1ce4a31e6b303de5 (diff)
downloadqpid-python-43e03e424f6f7b64b87fe6ede41e0bc24e0e8f55.tar.gz
QPID-4373 Repair r1399311 with more fluent CLI switch name
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1399369 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/acl/AclPlugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/acl/AclPlugin.cpp b/qpid/cpp/src/qpid/acl/AclPlugin.cpp
index c3cc92ba88..64bf040309 100644
--- a/qpid/cpp/src/qpid/acl/AclPlugin.cpp
+++ b/qpid/cpp/src/qpid/acl/AclPlugin.cpp
@@ -43,8 +43,8 @@ struct AclOptions : public Options {
addOptions()
("acl-file", optValue(values.aclFile, "FILE"), "The policy file to load from, loaded from data dir")
("max-connections" , optValue(values.aclMaxConnectTotal, "N"), "The maximum combined number of connections allowed. 0 implies no limit.")
- ("limit-connections-per-user", optValue(values.aclMaxConnectPerUser, "N"), "The maximum number of connections allowed per user. 0 implies no limit.")
- ("limit-connections-per-ip" , optValue(values.aclMaxConnectPerIp, "N"), "The maximum number of connections allowed per host IP address. 0 implies no limit.")
+ ("connection-limit-per-user", optValue(values.aclMaxConnectPerUser, "N"), "The maximum number of connections allowed per user. 0 implies no limit.")
+ ("connection-limit-per-ip" , optValue(values.aclMaxConnectPerIp, "N"), "The maximum number of connections allowed per host IP address. 0 implies no limit.")
("max-queues-per-user", optValue(values.aclMaxQueuesPerUser, "N"), "The maximum number of queues allowed per user. 0 implies no limit.")
;
}