From 03e3d184b2d8fac4c82408b1ac1738cb7af5680e Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 31 May 2004 17:44:39 +0000 Subject: Fix bison input for current build tools, otherwise bison or the compiler will abort the build. (by Andreas) --- filter/config.Y | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'filter/config.Y') diff --git a/filter/config.Y b/filter/config.Y index ce11e45..d4bf44c 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: -- cgit v1.2.3