From 238c17bd0ed8fe00b7538faf961ae761bef08a4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Thu, 14 Oct 2021 20:39:23 +0200 Subject: [PATCH] irc: display command in lower case when there is a parsing error --- src/plugins/irc/irc-protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index a6f432e7f..d6a5800cb 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -7135,7 +7135,7 @@ irc_protocol_recv_command (struct t_irc_server *server, _("%s%s: failed to parse command \"%s\" (please " "report to developers): \"%s\""), weechat_prefix ("error"), IRC_PLUGIN_NAME, - msg_command, irc_message); + cmd_name, irc_message); } /* send signal with received command (if message is not ignored) */