mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Accept names replies with nick!user@host instead of nick
if they are somehow enabled (UHNAMES/userhost-in-names). bug #805 git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5205 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
f3419c3936
commit
cbd163aa5a
@ -103,7 +103,7 @@ static void event_names_list(IRC_SERVER_REC *server, const char *data)
|
||||
{
|
||||
IRC_CHANNEL_REC *chanrec;
|
||||
NICK_REC *rec;
|
||||
char *params, *type, *channel, *names, *ptr;
|
||||
char *params, *type, *channel, *names, *ptr, *host;
|
||||
int op, halfop, voice;
|
||||
char prefixes[MAX_USER_PREFIXES+1];
|
||||
|
||||
@ -162,9 +162,15 @@ static void event_names_list(IRC_SERVER_REC *server, const char *data)
|
||||
ptr++;
|
||||
}
|
||||
|
||||
host = strchr(ptr, '!');
|
||||
if (host != NULL)
|
||||
*host++ = '\0';
|
||||
|
||||
if (nicklist_find((CHANNEL_REC *) chanrec, ptr) == NULL) {
|
||||
rec = irc_nicklist_insert(chanrec, ptr, op, halfop,
|
||||
voice, FALSE, prefixes);
|
||||
if (host != NULL)
|
||||
nicklist_set_host(CHANNEL(chanrec), rec, host);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user