summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2015-04-06 11:32:22 -0700
committerJames M Snell <jasnell@gmail.com>2015-04-08 12:00:19 -0700
commit02a549ed2b2afe85d8ff0335b6684ad54023afb7 (patch)
tree12404df1e21d7a189c4b60140d161aede8ae1580
parent67d9a56251c4491beacb666ba5833574d0cf0d12 (diff)
downloadnode-02a549ed2b2afe85d8ff0335b6684ad54023afb7.tar.gz
tls: make the --enable-legacy-cipher-list help less verbose
Per feedback on the commit, make the PrintHelp for --enable-legacy-cipher-list less verbose. Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/joyent/node/pull/14413
-rw-r--r--src/node.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/node.cc b/src/node.cc
index 4ba39b111..81e123e57 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -2567,8 +2567,7 @@ static void PrintHelp() {
" --enable-ssl2 enable ssl2\n"
" --enable-ssl3 enable ssl3\n"
" --cipher-list=val specify the default TLS cipher list\n"
- " --enable-legacy-cipher-list=val \n"
- " set to v0.10.38 to use the v0.10.38 list\n"
+ " --enable-legacy-cipher-list=v0.10.38 \n"
"\n"
"Environment variables:\n"
#ifdef _WIN32
@@ -2581,8 +2580,7 @@ static void PrintHelp() {
" global contexts.\n"
"NODE_DISABLE_COLORS Set to 1 to disable colors in the REPL\n"
"NODE_CIPHER_LIST Override the default TLS cipher list\n"
- "NODE_LEGACY_CIPHER_LIST\n"
- " Set to v0.10.38 to use the v0.10.38 list\n"
+ "NODE_LEGACY_CIPHER_LIST=v0.10.38\n"
"\n"
"Documentation can be found at http://nodejs.org/\n");
}