From: Russell Bryant Date: Wed, 22 Oct 2008 17:44:05 +0000 (+0000) Subject: Fix this check to use the proper variable (the result from get_in_brackets) X-Git-Tag: 1.6.2.0-beta1~1045 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca14f718d7118041557a65438bb10d31d2eb7661;p=thirdparty%2Fasterisk.git Fix this check to use the proper variable (the result from get_in_brackets) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@151554 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index b0bdcdc3bd..c11f740b8d 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -9773,7 +9773,7 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full, int tim ast_copy_string(to, get_header(&p->initreq, "To"), sizeof(to)); c = get_in_brackets(to); - if (strncasecmp(to, "sip:", 4) && strncasecmp(to, "sips:", 5)) { + if (strncasecmp(c, "sip:", 4) && strncasecmp(c, "sips:", 5)) { ast_log(LOG_WARNING, "Huh? Not a SIP header (%s)?\n", to); return -1; }