From 40116db7c520764c19ff346ca24a9aa160132add Mon Sep 17 00:00:00 2001 From: James Booth Date: Thu, 6 Oct 2016 00:45:55 +0100 Subject: [PATCH] Fix /tls revoke message fixes #868 --- src/command/cmd_funcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index 9d5557f5..15fa7372 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -265,7 +265,7 @@ cmd_tls_revoke(ProfWin *window, const char *const command, gchar **args) if (res) { cons_show("Trusted certificate revoked: %s", args[1]); } else { - cons_show("Could not find certificate: %s", args[0]); + cons_show("Could not find certificate: %s", args[1]); } } return TRUE;