From: Steve Murphy Date: Fri, 1 Sep 2006 15:57:05 +0000 (+0000) Subject: This small tweek will hopefully fix 7859, and silence all possible others X-Git-Tag: 1.4.0-beta1~218 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd8635b9b5b1049f7b21705d4d42e7096b69f760;p=thirdparty%2Fasterisk.git This small tweek will hopefully fix 7859, and silence all possible others along that line. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41674 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/pbx.c b/main/pbx.c index 039d7beb3a..ac88d5a01a 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -736,11 +736,12 @@ enum ext_match_t { * E_MATCHMORE success only on partial match (i.e. leftover digits in pattern) * E_CANMATCH either of the above. */ + static int _extension_match_core(const char *pattern, const char *data, enum ext_match_t mode) { mode &= E_MATCH_MASK; /* only consider the relevant bits */ - - if (!strcasecmp(pattern,data)) /* note: if this test is left out, then _x. will not match _x. !!! */ + + if (mode == E_MATCH && pattern[0] == '_' && strcasecmp(pattern,data)==0) /* note: if this test is left out, then _x. will not match _x. !!! */ return 1; if (pattern[0] != '_') { /* not a pattern, try exact or partial match */