aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
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)) {