]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fix bison input for current build tools, otherwise bison or the compiler
authorMartin Mares <mj@ucw.cz>
Mon, 31 May 2004 17:44:39 +0000 (17:44 +0000)
committerMartin Mares <mj@ucw.cz>
Mon, 31 May 2004 17:44:39 +0000 (17:44 +0000)
will abort the build.

(by Andreas)

filter/config.Y

index ce11e45ddbb4687e79272c05e5939e9d8c91fd69..d4bf44cc628bfb4024d045b1874af31b6f5b100d 100644 (file)
@@ -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: