summaryrefslogtreecommitdiff
path: root/ast_expr.y
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-05-04 01:45:00 +0000
committerMark Spencer <markster@digium.com>2004-05-04 01:45:00 +0000
commit5098302f2fcf3769c669a78be3c3d91b886a7029 (patch)
treed2b50e7df9f4712e894f8ed42eb3f31f0249d497 /ast_expr.y
parente8ed258aa44dd54c1d114d7432e5ba8b22213944 (diff)
Update for backwards compatability (bug #1548)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2881 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'ast_expr.y')
-rwxr-xr-xast_expr.y35
1 files changed, 31 insertions, 4 deletions
diff --git a/ast_expr.y b/ast_expr.y
index 67b56fdd8..4f4bc2375 100755
--- a/ast_expr.y
+++ b/ast_expr.y
@@ -276,7 +276,9 @@ ast_yylex (YYSTYPE *lvalp, YYLTYPE *yylloc, struct parser_control *karoto)
{
char *p=0;
char *t1=0;
-
+ char savep = 0;
+ char *savepp = 0;
+
if (karoto->firsttoken==1) {
t1 = karoto->argv;
karoto->firsttoken = 0;
@@ -306,9 +308,28 @@ ast_yylex (YYSTYPE *lvalp, YYLTYPE *yylloc, struct parser_control *karoto)
t2++;
if( *t2 == '"' )
{
- *t2 = 0;
- karoto->ptrptr = t2+1;
- p = t1+1;
+ if( *(t2+1) == ' ' || *(t2+1) == 0 )
+ {
+ if( *(t2+1) )
+ {
+ *(t2+1) = 0;
+ karoto->ptrptr = t2+2;
+ }
+ else
+ {
+ karoto->ptrptr = t2+1;
+ }
+ }
+ else
+ {
+ /* hmmm. what if another token is here? */
+ /* maybe we can insert a space? */
+ savep = *(t2+1);
+ savepp = t2+1;
+ *(t2+1) = 0;
+ karoto->ptrptr = t2+1;
+ }
+ p = t1;
}
else
{
@@ -344,6 +365,12 @@ ast_yylex (YYSTYPE *lvalp, YYLTYPE *yylloc, struct parser_control *karoto)
}
lvalp->val = make_str (p);
+ if( savep )
+ {
+ *savepp = savep; /* restore the null terminated string */
+ savepp = 0;
+ savep = 0;
+ }
return (TOKEN);
}