From: Chris Moore Date: Fri, 21 Jan 2011 18:14:33 +0000 (-0800) Subject: The -rpcssl command line option is a boolean, like -server, -daemon, -testnet, etc... X-Git-Tag: v0.4.0-unstable~234^2~176^2 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=2aadc8bb5b00cc45fb3a93a9f3893347b67472aa;p=novacoin.git 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. --- diff --git a/init.cpp b/init.cpp index 0f4b44a..1d43ab7 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=\t " + _("Server certificate file (default: server.cert)\n") + " -rpcsslprivatekeyfile= \t " + _("Server private key (default: server.pem)\n") + " -rpcsslciphers= \t " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)\n");