summaryrefslogtreecommitdiffstats
path: root/filter/config.Y
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2002-11-13 09:46:12 +0100
committerMartin Mares <mj@ucw.cz>2002-11-13 09:46:12 +0100
commitde10a974f2e2e8a11b6a6852cd770c1096e1c25d (patch)
tree1c275c882f3c749b0d95086eb48397c0bea1f7d6 /filter/config.Y
parent59b96d7b4d8a055aa77917099b358cfc7b5e0731 (diff)
downloadbird-de10a974f2e2e8a11b6a6852cd770c1096e1c25d.tar
bird-de10a974f2e2e8a11b6a6852cd770c1096e1c25d.zip
Added missing semicolons.
Diffstat (limited to 'filter/config.Y')
-rw-r--r--filter/config.Y2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/config.Y b/filter/config.Y
index 294da49..ce11e45 100644
--- a/filter/config.Y
+++ b/filter/config.Y
@@ -72,7 +72,7 @@ type:
switch ($1) {
default:
cf_error( "You can't create sets of this type." );
- case T_INT: case T_IP: case T_PREFIX: case T_PAIR:
+ case T_INT: case T_IP: case T_PREFIX: case T_PAIR: ;
}
$$ = $1 | T_SET;
}