diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/proto-irc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index f6e7eccf..1b20d17c 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -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); } |