issue #5761
authorKevin P. Fleming <kpfleming@digium.com>
Wed, 16 Nov 2005 17:16:23 +0000 (17:16 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Wed, 16 Nov 2005 17:16:23 +0000 (17:16 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7113 65c4cc65-6c06-0410-ace0-fbb531ad65f3

ChangeLog
pbx/pbx_ael.c

index bd6af95..e1b161e 100755 (executable)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-16  Kevin P. Fleming  <kpfleming@limerick.digium.com>
+
+       * pbx/pbx_ael.c (match_assignment): properly parse equal signs surrounded by whitespace (issue #5761)
+
 2005-11-16  Kevin P. Fleming  <kpfleming@digium.com>
 
        * doc/README.realtime: document the limitations of using FreeTDS with Realtime (issue #5767)
index b29571a..4040611 100755 (executable)
@@ -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)) {