mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-29 02:37:00 +00:00
lib: Replace route_map_clear_updated to void
Return status not used at all. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
This commit is contained in:
parent
db391f7d06
commit
d3822e7983
@ -812,17 +812,13 @@ int route_map_mark_updated(const char *name)
|
||||
return (ret);
|
||||
}
|
||||
|
||||
static int route_map_clear_updated(struct route_map *map)
|
||||
static void route_map_clear_updated(struct route_map *map)
|
||||
{
|
||||
int ret = -1;
|
||||
|
||||
if (map) {
|
||||
map->to_be_processed = false;
|
||||
if (map->deleted)
|
||||
route_map_free_map(map);
|
||||
}
|
||||
|
||||
return (ret);
|
||||
}
|
||||
|
||||
/* Lookup route map. If there isn't route map create one and return
|
||||
|
Loading…
Reference in New Issue
Block a user