From ca14f718d7118041557a65438bb10d31d2eb7661 Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Wed, 22 Oct 2008 17:44:05 +0000
Subject: [PATCH] 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
---
 channels/chan_sip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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