From 685c48b19c5a843dc66ae4292075d61676d117ee Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Tue, 3 Jul 2007 02:51:08 +0000 Subject: 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 --- res/res_jabber.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res/res_jabber.c') diff --git a/res/res_jabber.c b/res/res_jabber.c index 78ff7d9a6..2520f02ab 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) { -- cgit v1.2.3