diff options
author | Giuseppe <LemonBoy@users.noreply.github.com> | 2016-03-08 22:49:05 +0100 |
---|---|---|
committer | Giuseppe <LemonBoy@users.noreply.github.com> | 2016-03-08 22:49:05 +0100 |
commit | 66e9c4bb39ed5c0b2d9b81e8610e894af82abd8e (patch) | |
tree | 27ed82dff55cca34eafa9e9c1f84c330dc00eddc /src | |
parent | 8f1f1d879fc93a03d456bf8444381e023f4b24dc (diff) | |
parent | 4baefd25747df116c19ea1301c5fe8fb7eef3716 (diff) | |
download | irssi-66e9c4bb39ed5c0b2d9b81e8610e894af82abd8e.zip |
Merge pull request #432 from grawity/fix-external
fix SASL EXTERNAL
Diffstat (limited to 'src')
-rw-r--r-- | src/irc/core/sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/sasl.c b/src/irc/core/sasl.c index a04eaf45..8fba9ba2 100644 --- a/src/irc/core/sasl.c +++ b/src/irc/core/sasl.c @@ -145,7 +145,7 @@ static void sasl_step(IRC_SERVER_REC *server, const char *data, const char *from case SASL_MECHANISM_EXTERNAL: /* Empty response */ - irc_send_cmdv(server, "+"); + irc_send_cmdv(server, "AUTHENTICATE +"); break; } |