diff options
author | Stefan Fritsch <sf@apache.org> | 2010-11-25 23:27:17 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-11-25 23:27:17 +0100 |
commit | cf0e2c3a46d366053770ef00cba5405d2ebcc18a (patch) | |
tree | 8878aec9ee5b5a091c69052e29454a7590676327 /server/util_expr_parse.y | |
parent | STATUS update. (diff) | |
download | apache2-cf0e2c3a46d366053770ef00cba5405d2ebcc18a.tar.xz apache2-cf0e2c3a46d366053770ef00cba5405d2ebcc18a.zip |
Fix some Windows build issues
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1039204 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_expr_parse.y')
-rw-r--r-- | server/util_expr_parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/util_expr_parse.y b/server/util_expr_parse.y index 568597f7ca..3810258718 100644 --- a/server/util_expr_parse.y +++ b/server/util_expr_parse.y @@ -41,7 +41,7 @@ %token T_TRUE %token T_FALSE -%token <cpVal> ERROR +%token <cpVal> T_ERROR %token <cpVal> T_DIGIT %token <cpVal> T_ID @@ -107,7 +107,7 @@ int ap_expr_yylex(YYSTYPE *lvalp, void *scanner); %% root : expr { ctx->expr = $1; } - | ERROR { YYABORT; } + | T_ERROR { YYABORT; } ; expr : T_TRUE { $$ = ap_expr_make(op_True, NULL, NULL, ctx); } |