From: Jason Parker Date: Tue, 3 Jul 2007 02:51:08 +0000 (+0000) Subject: Correct an issue where the wrong type was being used to start sasl. X-Git-Tag: 1.6.0-beta1~3^2~2168 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=685c48b19c5a843dc66ae4292075d61676d117ee;p=thirdparty%2Fasterisk.git Correct an issue where the wrong type was being used to start sasl. Pointed out by and patch provided by mog. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@72987 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_jabber.c b/res/res_jabber.c index 78ff7d9a66..2520f02aba 100644 --- a/res/res_jabber.c +++ b/res/res_jabber.c @@ -523,7 +523,7 @@ static int aji_start_sasl(iksparser *prs, enum ikssasltype type, char *username, char *base64; if (type == IKS_STREAM_SASL_MD5) - return iks_start_sasl(prs, type, username, pass); + return iks_start_sasl(prs, IKS_SASL_DIGEST_MD5, username, pass); x = iks_new("auth"); if (!x) {