aboutsummaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
authorChris Moore <dooglus@gmail.com>2011-01-21 10:14:33 -0800
committerChris Moore <dooglus@gmail.com>2011-01-21 10:14:33 -0800
commit2aadc8bb5b00cc45fb3a93a9f3893347b67472aa (patch)
treeab2f415836fe7fbb999d3b2eb0ca946f8070d002 /init.cpp
parent05563e9ef26e40c05092bf840a01d78bd2e7efb6 (diff)
downloadbitcoin-2aadc8bb5b00cc45fb3a93a9f3893347b67472aa.tar.xz
The -rpcssl command line option is a boolean, like -server, -daemon, -testnet, etc. Specifying -rpcssl=1 is the same as just -rpcssl, as for any other boolean flag, so let's show it the same in the help text.
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.cpp b/init.cpp
index 0f4b44a0fc..1d43ab7ffd 100644
--- a/init.cpp
+++ b/init.cpp
@@ -189,7 +189,7 @@ bool AppInit2(int argc, char* argv[])
#ifdef USE_SSL
strUsage += string() +
_("\nSSL options: (see the Bitcoin Wiki for SSL setup instructions)\n") +
- " -rpcssl=1 \t " + _("Use OpenSSL (https) for JSON-RPC connections\n") +
+ " -rpcssl \t " + _("Use OpenSSL (https) for JSON-RPC connections\n") +
" -rpcsslcertificatechainfile=<file.cert>\t " + _("Server certificate file (default: server.cert)\n") +
" -rpcsslprivatekeyfile=<file.pem> \t " + _("Server private key (default: server.pem)\n") +
" -rpcsslciphers=<ciphers> \t " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)\n");