[svn-commits] file: branch 11 r374833 - /branches/11/channels/chan_motif.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Oct 11 08:33:33 CDT 2012
Author: file
Date: Thu Oct 11 08:33:29 2012
New Revision: 374833
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=374833
Log:
Consider the Google Talk content stanza name (jin:content) valid.
Modified:
branches/11/channels/chan_motif.c
Modified: branches/11/channels/chan_motif.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/chan_motif.c?view=diff&rev=374833&r1=374832&r2=374833
==============================================================================
--- branches/11/channels/chan_motif.c (original)
+++ branches/11/channels/chan_motif.c Thu Oct 11 08:33:29 2012
@@ -2102,7 +2102,8 @@
struct ast_rtp_instance *rtp = NULL;
iks *description, *transport;
- if (strcmp(iks_name(content), "content")) {
+ if (strcmp(iks_name(content), "content") &&
+ strcmp(iks_name(content), "jin:content")) {
continue;
}
More information about the svn-commits
mailing list