From eda256f38b4e400ec2c50a53e07423886e960af1 Mon Sep 17 00:00:00 2001 From: Alexandre Aufrere Date: Mon, 25 May 2020 16:15:27 +0200 Subject: [PATCH] Fixing typos --- README.md | 5 +++-- WinCertes/Program.cs | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0da44fe..8d2ca7e 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,9 @@ WinCertes.exe: a switch, default 80) --show show current configuration parameters --reset reset all configuration parameters - --extra manages one additonal certificate instead of the - default one, with its own settings + --extra[=VALUE] manages additional certificate(s) instead of the + default one, with its own settings. Add an + integer index optionally to manage more certs. --no-csp does not import the certificate into CSP. Use with caution, at your own risks diff --git a/WinCertes/Program.cs b/WinCertes/Program.cs index 3450379..813e9be 100644 --- a/WinCertes/Program.cs +++ b/WinCertes/Program.cs @@ -155,7 +155,7 @@ private static bool HandleOptions(string[] args) { "l|listenport=", "listen on port {N} in standalone mode (for use with -a switch, default 80)", (int v) => _winCertesOptions.HttpPort = v }, { "show", "show current configuration parameters", v=> _show = (v != null ) }, { "reset", "reset all configuration parameters", v=> _reset = (v != null ) }, - { "extra:", "manages additonnal certificate(s) instead of the default one, with its own settings. Add an integer index to extra optionnally", (int v) => _extra = v }, + { "extra:", "manages additional certificate(s) instead of the default one, with its own settings. Add an integer index optionally to manage more certs.", (int v) => _extra = v }, { "no-csp", "does not import the certificate into CSP. Use with caution, at your own risks. REVOCATION WILL NOT WORK IN THAT MODE.", v=> _winCertesOptions.noCsp = (v != null) } };