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
This commit is contained in:
Russell Bryant 2008-10-22 17:44:05 +00:00
parent cfa9531311
commit ca14f718d7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}