diff options
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r-- | src/common/proto-irc.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index 4174e182..180a3e43 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -1147,7 +1147,12 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[], case WORDL('A', 'U', 'T', 'H'): inbound_sasl_authenticate (sess->server, word_eol[3]); return; - + + case WORDL('C', 'H', 'G', 'H'): + inbound_user_info (sess, NULL, word[3], word[4], NULL, nick, NULL, + NULL, 0xff, tags_data); + return; + case WORDL('I','N','V','I'): if (ignore_check (word[1], IG_INVI)) return; |