summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2011-09-27 13:49:32 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2011-09-27 13:49:32 +0200
commit736fd7303cb05e910507edaa9310178a23dbcf1e (patch)
tree0710f29d69e41eb5cae322dbb60ae665873727e8
parentbf6d91dc4edf3d08f0de41f71503159b1713fc9a (diff)
downloadbird-736fd7303cb05e910507edaa9310178a23dbcf1e.tar
bird-736fd7303cb05e910507edaa9310178a23dbcf1e.zip
Fixes a bug with multiple function arguments.
-rw-r--r--filter/config.Y2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/config.Y b/filter/config.Y
index 3c5f18b..4dffdc6 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;
}