degesch: display ERROR messages

So that the user knows he was killed.
This commit is contained in:
Přemysl Eric Janouch 2015-08-12 23:21:11 +02:00
parent ce83f8244c
commit 328bf9af1e
1 changed files with 10 additions and 0 deletions

View File

@ -5170,6 +5170,15 @@ irc_handle_cap (struct server *s, const struct irc_message *msg)
str_vector_free (&v);
}
static void
irc_handle_error (struct server *s, const struct irc_message *msg)
{
if (msg->params.len < 1)
return;
log_server_error (s, s->buffer, "#m", msg->params.vector[0]);
}
static void
irc_handle_invite (struct server *s, const struct irc_message *msg)
{
@ -5791,6 +5800,7 @@ g_irc_handlers[] =
{
// This list needs to stay sorted
{ "CAP", irc_handle_cap },
{ "ERROR", irc_handle_error },
{ "INVITE", irc_handle_invite },
{ "JOIN", irc_handle_join },
{ "KICK", irc_handle_kick },