aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-16 17:16:23 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-16 17:16:23 +0000
commit18013517e49498f8d1688054290269a2611b1202 (patch)
tree4b0cc2df4a93f7ee7a96c9adc727101a159600b1 /pbx
parent8eb2c5815e351807f643f5d7a738e45abbf79007 (diff)
issue #5761
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7113 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rwxr-xr-xpbx/pbx_ael.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/pbx_ael.c b/pbx/pbx_ael.c
index b29571a0b..40406110b 100755
--- a/pbx/pbx_ael.c
+++ b/pbx/pbx_ael.c
@@ -407,7 +407,7 @@ static int match_assignment(char *variable, char **value)
int inpar = 0;
c = variable;
- while (*c && (*c > 32)) {
+ while (*c) {
if(*c == ')' && (inpar > 0)) {
inpar--;
} else if(*c == '(' && (inpar >= 0)) {