1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Correct the name of the emitted signal.

There's a typo in 'sasl_fail', the signal that's emitted should be
'server sasl failure' and not 'server sasl fail'.
This commit is contained in:
LemonBoy 2016-06-01 22:29:13 +02:00
parent 1a6ec1b0b6
commit f1d0c8ff99

View File

@ -71,7 +71,7 @@ static void sasl_fail(IRC_SERVER_REC *server, const char *data, const char *from
params = event_get_params(data, 2, NULL, &error);
signal_emit("server sasl fail", 2, server, error);
signal_emit("server sasl failure", 2, server, error);
/* Terminate the negotiation */
cap_finish_negotiation(server);