mirror of
https://github.com/moparisthebest/hexchat
synced 2024-12-22 15:48:52 -05:00
Hide "empty" SASL messages during auth
This commit is contained in:
parent
bd6e39ffa9
commit
21424154a8
@ -1224,6 +1224,10 @@ process_named_servermsg (session *sess, char *buf, char *rawname, char *word_eol
|
||||
EMIT_SIGNAL (XP_TE_SERVNOTICE, sess, buf, sess->server->servername, NULL, NULL, 0);
|
||||
return;
|
||||
}
|
||||
if (!strncmp (buf, "AUTHENTICATE +", 14)) /* omit SASL "empty" responses */
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
EMIT_SIGNAL (XP_TE_SERVTEXT, sess, buf, sess->server->servername, rawname, NULL, 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user