From d5dc7d8b034f8f618c64550252e90109549487df Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Thu, 11 Oct 2012 13:33:29 +0000 Subject: [PATCH] Consider the Google Talk content stanza name (jin:content) valid. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@374833 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_motif.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/channels/chan_motif.c b/channels/chan_motif.c index 70629f4e0a..12e4b37f1f 100644 --- a/channels/chan_motif.c +++ b/channels/chan_motif.c @@ -2102,7 +2102,8 @@ static int jingle_interpret_content(struct jingle_session *session, ikspak *pak) 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; }