diff options
author | Martin Mares <mj@ucw.cz> | 2002-11-13 09:46:12 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2002-11-13 09:46:12 +0100 |
commit | de10a974f2e2e8a11b6a6852cd770c1096e1c25d (patch) | |
tree | 1c275c882f3c749b0d95086eb48397c0bea1f7d6 /filter | |
parent | 59b96d7b4d8a055aa77917099b358cfc7b5e0731 (diff) | |
download | bird-de10a974f2e2e8a11b6a6852cd770c1096e1c25d.tar bird-de10a974f2e2e8a11b6a6852cd770c1096e1c25d.zip |
Added missing semicolons.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/config.Y | 2 |
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; } |