More PBX fixes

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1508 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2003-09-13 23:50:18 +00:00
parent c1c5fcd426
commit 00b83639fd
1 changed files with 3 additions and 3 deletions

6
pbx.c
View File

@ -834,17 +834,17 @@ int ast_extension_match(char *pattern, char *data)
}
if (pattern[0] != '_') {
match = (strcmp(pattern, data) == 0);
ast_log(LOG_DEBUG, "ast_extension_match %s == /%s/ => %d\n", data, pattern, match);
/* ast_log(LOG_DEBUG, "ast_extension_match %s == /%s/ => %d\n", data, pattern, match); */
} else {
match = ast_extension_patmatch(pattern+1,data);
ast_log(LOG_DEBUG, "ast_extension_match %s =~ /%s/ => %d\n", data, pattern+1, match);
/* ast_log(LOG_DEBUG, "ast_extension_match %s =~ /%s/ => %d\n", data, pattern+1, match); */
}
return match;
}
static int extension_close(char *pattern, char *data, int needmore)
{
int match=1;
int match=0;
/* If "data" is longer, it can'be a subset of pattern unless
pattern is a pattern match */
if ((strlen(pattern) < strlen(data)) && (pattern[0] != '_'))