Mon Sep 27 21:48:15 PDT 2004
- Previous message: [Slony1-commit] By darcyb: Support for user derfined timestamp logging thanks goes to:
- Next message: [Slony1-commit] By wieck: Added code to the cleanup SP to remove confirm entries for
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message: ----------- fix "fatal error: illegal rule: missing semicolon or | ?, line 458" as seen by some system yaccers Tags: ---- REL_1_0_STABLE Modified Files: -------------- slony1-engine/src/slonik: parser.y (r1.16 -> r1.16.2.1) -------------- next part -------------- Index: parser.y =================================================================== RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/slonik/parser.y,v retrieving revision 1.16 retrieving revision 1.16.2.1 diff -Lsrc/slonik/parser.y -Lsrc/slonik/parser.y -u -w -r1.16 -r1.16.2.1 --- src/slonik/parser.y +++ src/slonik/parser.y @@ -452,8 +452,9 @@ { $$ = $1; } | stmt_wait_event { $$ = $1; } - | stmt_error ';' { yyerrok; } - { $$ = $1; } + | stmt_error ';' + { yyerrok; + $$ = $1; } ; stmt_echo : lno K_ECHO literal ';'
- Previous message: [Slony1-commit] By darcyb: Support for user derfined timestamp logging thanks goes to:
- Next message: [Slony1-commit] By wieck: Added code to the cleanup SP to remove confirm entries for
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list