From: Ondrej Zajicek Date: Tue, 27 Sep 2011 11:49:32 +0000 (+0200) Subject: Fixes a bug with multiple function arguments. X-Git-Tag: v1.3.4~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=736fd7303cb05e910507edaa9310178a23dbcf1e;p=thirdparty%2Fbird.git Fixes a bug with multiple function arguments. --- diff --git a/filter/config.Y b/filter/config.Y index 3c5f18b71..4dffdc63d 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -347,7 +347,7 @@ decls: /* EMPTY */ { $$ = NULL; } /* Declarations that have no ';' at the end. */ declsn: one_decl { $$ = $1; } - | declsn ';' one_decl { + | one_decl ';' declsn { $$ = $1; $$->aux2 = $3; }