mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 16:20:08 +00:00
bgpd: flowspec pbr entries list display fix
the pbr entries list was not terminated with a carriage return and a parenthesis. Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
This commit is contained in:
parent
7d4b857955
commit
026b0e3b6f
@ -376,11 +376,10 @@ void route_vty_out_flowspec(struct vty *vty, const struct prefix *p,
|
||||
bpr->priority,
|
||||
bpr->action->table_id);
|
||||
}
|
||||
if (list_began)
|
||||
vty_out(vty, ")");
|
||||
vty_out(vty, "\n");
|
||||
}
|
||||
if (!list_began)
|
||||
if (list_began)
|
||||
vty_out(vty, ")\n");
|
||||
else
|
||||
vty_out(vty, "\tnot installed in PBR\n");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user