mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Merge pull request #1556 from Steering7253/fix_sasl_multi_cap
fix irssi SASL negotiation with multiple CAP ACK
This commit is contained in:
commit
23ec63ae39
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ static void event_cap (IRC_SERVER_REC *server, char *args, char *nick, char *add
|
|||
}
|
||||
}
|
||||
else if (!g_ascii_strcasecmp(evt, "ACK")) {
|
||||
int got_sasl = FALSE;
|
||||
int got_sasl = (i_slist_find_string(server->cap_active, "sasl") != NULL);
|
||||
|
||||
/* Emit a signal for every ack'd cap */
|
||||
for (i = 0; i < caps_length; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue