aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-25 15:17:18 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-25 15:17:18 +0000
commitb918dc4720aded052250add43cc961bfca64b806 (patch)
treebcdae6ed53a2bf39ed4cd6dbe51af982f18fcd5a /channels
parent5aa09b2eddb1223bf2028b51eb45c87bff242a25 (diff)
Due to recent changes tag will no longer be NULL if not present so we have to use ast_strlen_zero to see if it's actually blank.
(closes issue #12061) Reported by: flefoll Patches: chan_sip.c.br14.patch_pedantic_no_totag uploaded by flefoll (license 244) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@104082 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 77ebf5a3b..de46b9b44 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -4567,7 +4567,7 @@ static struct sip_pvt *find_call(struct sip_request *req, struct sockaddr_in *si
found = (!strcmp(p->callid, callid));
else
found = (!strcmp(p->callid, callid) &&
- (!pedanticsipchecking || !tag || ast_strlen_zero(p->theirtag) || !strcmp(p->theirtag, tag))) ;
+ (!pedanticsipchecking || ast_strlen_zero(tag) || ast_strlen_zero(p->theirtag) || !strcmp(p->theirtag, tag))) ;
if (option_debug > 4)
ast_log(LOG_DEBUG, "= %s Their Call ID: %s Their Tag %s Our tag: %s\n", found ? "Found" : "No match", p->callid, p->theirtag, p->tag);