From d13ae114a21c1f537dc39724f37509d840a9fd7c Mon Sep 17 00:00:00 2001 From: TingPing Date: Mon, 8 Apr 2013 16:52:14 -0300 Subject: [PATCH] Handle numeric 900 --- src/common/proto-irc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index 281775ae..5beb35f2 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -915,6 +915,9 @@ process_numeric (session * sess, int n, notify_set_offline (serv, word[4] + 1, FALSE); break; + case 900: /* successful SASL 'logged in as ' */ + EMIT_SIGNAL (XP_TE_SERVTEXT, serv->server_session, word_eol[6]+1, word[1], 900, NULL, 0); + break; case 903: /* successful SASL auth */ case 904: /* aborted SASL auth */ case 905: /* failed SASL auth */