mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-20 12:20:12 +00:00
More PBX fixes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1508 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
6
pbx.c
6
pbx.c
@@ -834,17 +834,17 @@ int ast_extension_match(char *pattern, char *data)
|
|||||||
}
|
}
|
||||||
if (pattern[0] != '_') {
|
if (pattern[0] != '_') {
|
||||||
match = (strcmp(pattern, data) == 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 {
|
} else {
|
||||||
match = ast_extension_patmatch(pattern+1,data);
|
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;
|
return match;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int extension_close(char *pattern, char *data, int needmore)
|
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
|
/* If "data" is longer, it can'be a subset of pattern unless
|
||||||
pattern is a pattern match */
|
pattern is a pattern match */
|
||||||
if ((strlen(pattern) < strlen(data)) && (pattern[0] != '_'))
|
if ((strlen(pattern) < strlen(data)) && (pattern[0] != '_'))
|
||||||
|
Reference in New Issue
Block a user