From: Joshua Colp Date: Mon, 16 Jun 2008 12:32:02 +0000 (+0000) Subject: Merged revisions 122919 via svnmerge from X-Git-Tag: 1.6.2.0-beta1~1989 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=523532204a734de28251528ab1f10eeb3a78a80d;p=thirdparty%2Fasterisk.git Merged revisions 122919 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r122919 | file | 2008-06-16 09:31:09 -0300 (Mon, 16 Jun 2008) | 6 lines Only compare the first 15 characters so that even if the charset is specified we still accept it as SDP. (closes issue #12803) Reported by: lanzaandrea Patches: chan_sip.c.diff uploaded by lanzaandrea (license 496) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@122920 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 3bb56dca92..562f4adebe 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -6566,7 +6566,7 @@ static int find_sdp(struct sip_request *req) content_type = get_header(req, "Content-Type"); /* if the body contains only SDP, this is easy */ - if (!strcasecmp(content_type, "application/sdp")) { + if (!strncasecmp(content_type, "application/sdp", 15)) { req->sdp_start = 0; req->sdp_end = req->lines; return req->lines ? 1 : 0;