summaryrefslogtreecommitdiff
path: root/lib/routemap.c
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2018-06-20 07:19:31 -0400
committerGitHub <noreply@github.com>2018-06-20 07:19:31 -0400
commitc92a99c30ddd4e1736fd97fe398472ecb9574717 (patch)
tree267d3a4899811de68233e0d7e9798fd2506bfde9 /lib/routemap.c
parent984c07e4499d6a132d7138bcabfaba635151409b (diff)
parent46a69f10c01676e5f5dd0d12f542b58f8747decd (diff)
Merge pull request #2499 from donaldsharp/routemap_kisses
Some route-map prep
Diffstat (limited to 'lib/routemap.c')
-rw-r--r--lib/routemap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/routemap.c b/lib/routemap.c
index 892b19dac5..056c793454 100644
--- a/lib/routemap.c
+++ b/lib/routemap.c
@@ -751,7 +751,7 @@ struct route_map *route_map_lookup_by_name(const char *name)
return map;
}
-int route_map_mark_updated(const char *name, int del_later)
+int route_map_mark_updated(const char *name)
{
struct route_map *map;
int ret = -1;
@@ -781,7 +781,7 @@ int route_map_mark_updated(const char *name, int del_later)
return (ret);
}
-int route_map_clear_updated(struct route_map *map)
+static int route_map_clear_updated(struct route_map *map)
{
int ret = -1;
@@ -807,7 +807,7 @@ static struct route_map *route_map_get(const char *name)
return map;
}
-void route_map_walk_update_list(int (*route_map_update_fn)(char *name))
+void route_map_walk_update_list(void (*route_map_update_fn)(char *name))
{
struct route_map *node;
struct route_map *nnode = NULL;