[asterisk-commits] dvossel: branch 1.8 r290828 - /branches/1.8/channels/chan_gtalk.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Oct 7 16:45:00 CDT 2010
Author: dvossel
Date: Thu Oct 7 16:44:58 2010
New Revision: 290828
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=290828
Log:
Outbound gtalk calls now work correctly.
There was a problem with how the candidates were being
built on an outbound call. This patch fixes that.
Modified:
branches/1.8/channels/chan_gtalk.c
Modified: branches/1.8/channels/chan_gtalk.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_gtalk.c?view=diff&rev=290828&r1=290827&r2=290828
==============================================================================
--- branches/1.8/channels/chan_gtalk.c (original)
+++ branches/1.8/channels/chan_gtalk.c Thu Oct 7 16:44:58 2010
@@ -819,7 +819,7 @@
iks_insert_node(gtalk,candidate);
} else {
iks_insert_node(gtalk,transport);
- iks_insert_node(transport, candidate);
+ iks_insert_node(gtalk,candidate);
}
for (; p; p = p->next) {
if (!strcasecmp(p->sid, sid))
More information about the asterisk-commits
mailing list