aboutsummaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-01-20 14:18:51 -0500
committerGavin Andresen <[email protected]>2011-01-20 14:18:51 -0500
commit3475caf8f5eb207ae0b239f989c6c8c73ce03af0 (patch)
treec2bf7816d2cb6546467225611bee95f1a8315389 /init.cpp
parentprint -rescan timing info in debug.log (diff)
parentFix issue 34: correct spelling of -rpcsslcertificatechainfile in --help text. (diff)
downloaddiscoin-3475caf8f5eb207ae0b239f989c6c8c73ce03af0.tar.xz
discoin-3475caf8f5eb207ae0b239f989c6c8c73ce03af0.zip
Merge branch 'issue34' of https://github.com/dooglus/bitcoin into FIXES
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.cpp b/init.cpp
index f591e7a57..530de9496 100644
--- a/init.cpp
+++ b/init.cpp
@@ -188,10 +188,10 @@ 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") +
- " -rpcsslcertificatchainfile=<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");
+ " -rpcssl=1 \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");
#endif
strUsage += string() +