From f346704d3201dd224967b60d7092ff6d957e5afe Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sun, 16 Sep 2012 14:26:50 +0200 Subject: [PATCH] irc: fix SASL mechanism "external" (bug #37274) (patch from phlux) --- ChangeLog | 3 ++- src/plugins/irc/irc-protocol.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index bcfbc8e17..c6b5cde35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ WeeChat ChangeLog ================= Sébastien Helleu -v0.3.9-rc1, 2012-09-04 +v0.3.9-rc1, 2012-09-16 Version 0.3.9 (under dev!) @@ -66,6 +66,7 @@ Version 0.3.9 (under dev!) * fifo: ignore read failing with error EAGAIN (bug #37019) * guile: fix crash when unloading a script without pointer to interpreter * guile: fix path of guile include dirs in cmake build (patch #7790) +* irc: fix SASL mechanism "external" (bug #37274) * irc: fix parsing of message 346 when no nick/time are given (bug #37266) * irc: switch to next address after a timeout when connecting to server (bug #37216) diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 2cf5bbbbb..a380bed6c 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -168,7 +168,7 @@ IRC_PROTOCOL_CALLBACK(authenticate) sasl_password); break; case IRC_SASL_MECHANISM_EXTERNAL: - answer = strdup ("++"); + answer = strdup ("+"); break; case IRC_SASL_MECHANISM_PLAIN: default: