aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authordbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-16 18:23:15 +0000
committerdbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-16 18:23:15 +0000
commit90b158ff8841304d135c073a8c22e927917e09cf (patch)
tree3668ea8553f7f25a3c18b637b1a1aaedac254194 /main
parentfceadb5fda84105635903b6ebc3a996e6e9d1afc (diff)
Merged revisions 218868 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r218868 | dbrooks | 2009-09-16 13:06:42 -0500 (Wed, 16 Sep 2009) | 20 lines Merged revisions 218867 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r218867 | dbrooks | 2009-09-16 13:00:45 -0500 (Wed, 16 Sep 2009) | 13 lines Fixes CID pattern matching behavior to mirror that of extension pattern matching. Pattern matching for extensions uses a type of scoring system, giving values for specificity to each character in the pattern. Unfortunately, this is done character by character, in order. This does lead to some less specific patterns being first in line for matching, but it will usually get the job done. This patch merely brings CID matching to the same level as extension matching. This patch does not attempt to tackle the problem shared by extension matching. (closes issue #14708) Reported by: klaus3000 ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@218890 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/pbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 82ce13fc3..36c745e45 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -7165,7 +7165,7 @@ static int ast_add_extension2_lockopt(struct ast_context *con,
else if (e->matchcid && !tmp->matchcid)
res = -1;
else
- res = strcasecmp(e->cidmatch, tmp->cidmatch);
+ res = ext_cmp(e->cidmatch, tmp->cidmatch);
}
if (res >= 0)
break;