summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2022-09-06 16:21:43 +0200
committerDonatas Abraitis <donatas@opensourcerouting.org>2022-09-12 03:42:41 +0200
commitd3822e7983dbc9c7aeff7dae7afb294ef71aae17 (patch)
treeae6ee649480e008f1d742a356f6a9233c893bd02 /lib
parentMerge pull request #11922 from anlancs/fix/zebra-broken-evpn (diff)
downloadfrr-d3822e7983dbc9c7aeff7dae7afb294ef71aae17.tar.xz
frr-d3822e7983dbc9c7aeff7dae7afb294ef71aae17.zip
lib: Replace route_map_clear_updated to void
Return status not used at all. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/routemap.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/routemap.c b/lib/routemap.c
index 9529b7941..e6310465e 100644
--- a/lib/routemap.c
+++ b/lib/routemap.c
@@ -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