mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 16:48:43 +00:00
A few semicolons added to decrease a number of warnings.
This commit is contained in:
parent
c6a2fe64be
commit
155134f396
@ -440,7 +440,7 @@ lsadb_args:
|
||||
$$ = cfg_allocz(sizeof(struct lsadb_show_data));
|
||||
}
|
||||
| lsadb_args GLOBAL { $$ = $1; $$->scope = LSA_SCOPE_AS; }
|
||||
| lsadb_args AREA idval { $$ = $1; $$->scope = LSA_SCOPE_AREA; $$->area = $3 }
|
||||
| lsadb_args AREA idval { $$ = $1; $$->scope = LSA_SCOPE_AREA; $$->area = $3; }
|
||||
| lsadb_args LINK { $$ = $1; $$->scope = 1; /* hack, 0 is no filter */ }
|
||||
| lsadb_args TYPE NUM { $$ = $1; $$->type = $3; }
|
||||
| lsadb_args LSID idval { $$ = $1; $$->lsid = $3; }
|
||||
|
@ -290,8 +290,8 @@ radv_mult:
|
||||
;
|
||||
|
||||
radv_sensitive:
|
||||
/* empty */ { $$ = -1 }
|
||||
| SENSITIVE bool { $$ = $2 }
|
||||
/* empty */ { $$ = -1; }
|
||||
| SENSITIVE bool { $$ = $2; }
|
||||
;
|
||||
|
||||
CF_CODE
|
||||
|
Loading…
Reference in New Issue
Block a user