]> git.puffer.fish Git - mirror/frr.git/commitdiff
zebra: Remove uncalled function
authorDonald Sharp <sharpd@nvidia.com>
Wed, 6 Jan 2021 16:13:43 +0000 (11:13 -0500)
committerDonald Sharp <sharpd@nvidia.com>
Sat, 9 Jan 2021 03:34:41 +0000 (22:34 -0500)
Remove the dead function zebra_route_map_write_delay_timer

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
zebra/zebra_routemap.c
zebra/zebra_routemap.h

index 0ce724f6080a4213f0d9f47df93f1f3ca9863584..7f766a51792da473a247d8f0fca178a6e756dba3 100644 (file)
@@ -1668,14 +1668,6 @@ void zebra_routemap_finish(void)
        route_map_finish();
 }
 
-void zebra_route_map_write_delay_timer(struct vty *vty)
-{
-       if (vty && (zebra_rmap_update_timer != ZEBRA_RMAP_DEFAULT_UPDATE_TIMER))
-               vty_out(vty, "zebra route-map delay-timer %d\n",
-                       zebra_rmap_update_timer);
-       return;
-}
-
 route_map_result_t
 zebra_route_map_check(int family, int rib_type, uint8_t instance,
                      const struct prefix *p, struct nexthop *nexthop,
index 56e805ea03315c48133674a2e379ba49ed28a097..251e07af722cb5a9be845f680b89127cbacb85b0 100644 (file)
@@ -36,8 +36,6 @@ extern void zebra_add_import_table_route_map(afi_t afi, const char *rmap_name,
                                             uint32_t table);
 extern void zebra_del_import_table_route_map(afi_t afi, uint32_t table);
 
-extern void zebra_route_map_write_delay_timer(struct vty *);
-
 extern route_map_result_t
 zebra_import_table_route_map_check(int family, int rib_type, uint8_t instance,
                                   const struct prefix *p,