diff options
author | James Booth <boothj5@gmail.com> | 2015-09-24 01:23:48 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-09-24 01:23:48 +0100 |
commit | b96e3f100be18931aa534a819bc88ef6ffffc82b (patch) | |
tree | de4333c944c69e82b4f402dd9f13edd13e38cd05 /src/command | |
parent | 3e38d64397d7c26a782410f82f486c3de087bf40 (diff) | |
download | profani-tty-b96e3f100be18931aa534a819bc88ef6ffffc82b.tar.gz |
Fixed /tls help
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/command.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/command/command.c b/src/command/command.c index f2883efc..891cf4ea 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -204,14 +204,14 @@ static struct cmd_t command_defs[] = CMD_DESC( "Handle TLS certificates. ") CMD_ARGS( - { "allow", "Allow connection to continue with an invalid TLS certificate." }, - { "always", "Always allow connections with this invalid TLS certificate." }, - { "deny", "Terminate TLS connection." }, - { "trusted", "List manually trusted certificates (with /tls always)." }, - { "revoke", "Remove a manually trusted certificate." }, - { "certpath", "Show the trusted certificate path." }, - { "certpath set <path>", "Specify filesystem path containing trusted certificates." }, - { "certpath clear", "Clear the trusted certificate path." }) + { "allow", "Allow connection to continue with an invalid TLS certificate." }, + { "always", "Always allow connections with this invalid TLS certificate." }, + { "deny", "Terminate TLS connection." }, + { "trusted", "List manually trusted certificates (with /tls always)." }, + { "revoke <fingerprint>", "Remove a manually trusted certificate." }, + { "certpath", "Show the trusted certificate path." }, + { "certpath set <path>", "Specify filesystem path containing trusted certificates." }, + { "certpath clear", "Clear the trusted certificate path." }) CMD_NOEXAMPLES }, |