From: Martin Mares Date: Mon, 31 May 2004 17:44:39 +0000 (+0000) Subject: Fix bison input for current build tools, otherwise bison or the compiler X-Git-Tag: v1.2.0~394 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03e3d184b2d8fac4c82408b1ac1738cb7af5680e;p=thirdparty%2Fbird.git Fix bison input for current build tools, otherwise bison or the compiler will abort the build. (by Andreas) --- diff --git a/filter/config.Y b/filter/config.Y index ce11e45dd..d4bf44cc6 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -436,12 +436,12 @@ term: ; break_command: - QUITBIRD { $$ = F_QUITBIRD } - | ACCEPT { $$ = F_ACCEPT } - | REJECT { $$ = F_REJECT } - | ERROR { $$ = F_ERROR } - | PRINT { $$ = F_NOP } - | PRINTN { $$ = F_NONL } + QUITBIRD { $$ = F_QUITBIRD; } + | ACCEPT { $$ = F_ACCEPT; } + | REJECT { $$ = F_REJECT; } + | ERROR { $$ = F_ERROR; } + | PRINT { $$ = F_NOP; } + | PRINTN { $$ = F_NONL; } ; print_one: