diff options
Diffstat (limited to 'bgpd/bgp_aspath.c')
-rw-r--r-- | bgpd/bgp_aspath.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c index 9fce6e31..d404309c 100644 --- a/bgpd/bgp_aspath.c +++ b/bgpd/bgp_aspath.c @@ -1501,9 +1501,10 @@ aspath_print (struct aspath *as) /* Printing functions */ void -aspath_print_vty (struct vty *vty, struct aspath *as) +aspath_print_vty (struct vty *vty, const char *format, struct aspath *as) { - vty_out (vty, "%s", as->str); + assert (format); + vty_out (vty, format, as->str); } static void |