diff options
| author | Gavin Andresen <[email protected]> | 2011-01-20 14:18:51 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-01-20 14:18:51 -0500 |
| commit | 3475caf8f5eb207ae0b239f989c6c8c73ce03af0 (patch) | |
| tree | c2bf7816d2cb6546467225611bee95f1a8315389 /init.cpp | |
| parent | print -rescan timing info in debug.log (diff) | |
| parent | Fix issue 34: correct spelling of -rpcsslcertificatechainfile in --help text. (diff) | |
| download | discoin-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.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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() + |