From: Russell Bryant Date: Thu, 29 Mar 2007 17:44:45 +0000 (+0000) Subject: Merged revisions 59363 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~2934 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=921e975d5f19f623b009f1804dbfd010127ff47d;p=thirdparty%2Fasterisk.git Merged revisions 59363 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59363 | russell | 2007-03-29 12:43:52 -0500 (Thu, 29 Mar 2007) | 6 lines When building a response to a subscription, the "from" must be the full Jabber ID. This fixes some problems where jabber users are not able to add their Asterisk account to their user list, since they are unable to get Asterisk to approve their subscription. (issue #8210, reported by caspy, and verified by bradtem) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59364 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_jabber.c b/res/res_jabber.c index afad72c35e..8d44b66ed3 100644 --- a/res/res_jabber.c +++ b/res/res_jabber.c @@ -1328,7 +1328,7 @@ static void aji_handle_subscribe(struct aji_client *client, ikspak *pak) if(presence && status) { iks_insert_attrib(presence, "type", "subscribed"); iks_insert_attrib(presence, "to", pak->from->full); - iks_insert_attrib(presence, "from", iks_find_attrib(pak->x, "to")); + iks_insert_attrib(presence, "from", client->jid->full); if(pak->id) iks_insert_attrib(presence, "id", pak->id); iks_insert_cdata(status, "Asterisk has approved subscription", 0);