diff options
author | LemonBoy <thatlemon@gmail.com> | 2016-06-01 22:29:13 +0200 |
---|---|---|
committer | LemonBoy <thatlemon@gmail.com> | 2016-06-01 22:29:13 +0200 |
commit | f1d0c8ff99c4a0627d96c6ae0db39d917689fb07 (patch) | |
tree | 0fee1010de161302d2478009d396cc864cc60121 /src/irc | |
parent | 1a6ec1b0b63c4ffbaf22137157a6fae3570b6839 (diff) | |
download | irssi-f1d0c8ff99c4a0627d96c6ae0db39d917689fb07.zip |
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'.
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/core/sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |