aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-01 16:48:06 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-01 16:48:06 +0000
commit709b82f1b412573b626df48606ac89a9fdfaff2d (patch)
tree65727980c47f1c08f29866ac2e4c00acda0bdaa0 /main
parent56c64cbe5701f9b11b965407a3e56e4b6a216214 (diff)
Another formatting update for PCadach.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41695 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/pbx.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 2a0f21d77..f080d016c 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -741,9 +741,7 @@ static int _extension_match_core(const char *pattern, const char *data, enum ext
{
mode &= E_MATCH_MASK; /* only consider the relevant bits */
- if ( (mode == E_MATCH)
- && (pattern[0] == '_')
- && (strcasecmp(pattern,data)==0) ) /* 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 */