aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-29 00:42:16 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-29 00:42:16 +0000
commit61e54c890c463fd1f5bbcadd1d5438a2be1e2219 (patch)
tree815f7d7364b438b8f4e8459d20a2cce0412de1e9 /pbx.c
parent7e3b44be2f46090755b850199629f99df17f3a37 (diff)
Handle call forward on SIP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@715 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx.c b/pbx.c
index 20d38b3ec..0c01820d5 100755
--- a/pbx.c
+++ b/pbx.c
@@ -504,7 +504,7 @@ int ast_extension_match(char *pattern, char *data)
{
int match;
/* If they're the same return */
- if (!strcasecmp(pattern, data))
+ if (!strcmp(pattern, data))
return 1;
EXTENSION_MATCH_CORE(data,pattern,match);
/* Must be at the end of both */
@@ -611,7 +611,7 @@ static struct ast_exten *pbx_find_extension(struct ast_channel *chan, char *cont
tmp = contexts;
while(tmp) {
/* Match context */
- if (!strcasecmp(tmp->name, context)) {
+ if (!strcmp(tmp->name, context)) {
if (*status < STATUS_NO_EXTENSION)
*status = STATUS_NO_EXTENSION;
eroot = tmp->root;