Skip to content

Commit

Permalink
Fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
aloopkin committed May 25, 2020
1 parent 8e01404 commit eda256f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion WinCertes/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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) }
};

Expand Down

0 comments on commit eda256f

Please sign in to comment.