diff options
| author | Michael Goulish <mgoulish@apache.org> | 2011-03-04 19:16:53 +0000 |
|---|---|---|
| committer | Michael Goulish <mgoulish@apache.org> | 2011-03-04 19:16:53 +0000 |
| commit | 8736c136ed942e938831467b2b89ac79575d6601 (patch) | |
| tree | 96765c25f4a63f132920cf53d6361c159cba7173 /cpp/src | |
| parent | 9c4e2b2d293f82384c47b2d0562a06eb70c178d4 (diff) | |
| download | qpid-python-8736c136ed942e938831467b2b89ac79575d6601.tar.gz | |
QPID-3117
Fix misleading --help info on --sasl-config flag.
Its argument is not a file, it's a directory.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1078107 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/broker/Broker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Broker.cpp b/cpp/src/qpid/broker/Broker.cpp index 695943854d..65e712d608 100644 --- a/cpp/src/qpid/broker/Broker.cpp +++ b/cpp/src/qpid/broker/Broker.cpp @@ -152,7 +152,7 @@ Broker::Options::Options(const std::string& name) : ("tcp-nodelay", optValue(tcpNoDelay), "Set TCP_NODELAY on TCP connections") ("require-encryption", optValue(requireEncrypted), "Only accept connections that are encrypted") ("known-hosts-url", optValue(knownHosts, "URL or 'none'"), "URL to send as 'known-hosts' to clients ('none' implies empty list)") - ("sasl-config", optValue(saslConfigPath, "FILE"), "gets sasl config from nonstandard location") + ("sasl-config", optValue(saslConfigPath, "DIR"), "gets sasl config info from nonstandard location") ("max-session-rate", optValue(maxSessionRate, "MESSAGES/S"), "Sets the maximum message rate per session (0=unlimited)") ("async-queue-events", optValue(asyncQueueEvents, "yes|no"), "Set Queue Events async, used for services like replication") ("default-flow-stop-threshold", optValue(queueFlowStopRatio, "%MESSAGES"), "Queue capacity level at which flow control is activated.") |
