Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
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 <[email protected]>
PR-URL: #14413
  • Loading branch information
jasnell authored and Julien Gilli committed Jul 16, 2015
commit 09e94308b861f49f8d8a6ec0d8e2aa0c1b08e37f
6 changes: 2 additions & 4 deletions src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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");
}
Expand Down