1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 16:23:14 +02:00

irc: send SASL username with mechanism EXTERNAL (closes #2270)

The SASL username is sent if set, otherwise "+" is still sent.
This commit is contained in:
Sébastien Helleu
2025-10-12 16:11:33 +02:00
parent b066f713d7
commit 72b2242135
5 changed files with 47 additions and 1 deletions
+1 -1
View File
@@ -591,7 +591,7 @@ IRC_PROTOCOL_CALLBACK(authenticate)
sasl_username, sasl_key, &sasl_error);
break;
case IRC_SASL_MECHANISM_EXTERNAL:
answer = strdup ("+");
answer = irc_sasl_mechanism_external (sasl_username);
break;
}
if (answer)