From f1d0c8ff99c4a0627d96c6ae0db39d917689fb07 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Wed, 1 Jun 2016 22:29:13 +0200 Subject: 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'. --- src/irc/core/sasl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irc/core/sasl.c b/src/irc/core/sasl.c index b74b6a8c..f080ae59 100644 --- a/src/irc/core/sasl.c +++ b/src/irc/core/sasl.c @@ -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); -- cgit v1.2.3