mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-04 09:41:46 +00:00
bgpd: Fix confederation identifier unsigned display
The confederation identifier is a `as_t` type which is a uint32_t underneath the covers. Display it using a %u Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
4870191362
commit
3c195d60db
@ -7557,7 +7557,7 @@ int bgp_config_write(struct vty *vty)
|
||||
|
||||
/* Confederation identifier*/
|
||||
if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION))
|
||||
vty_out(vty, " bgp confederation identifier %i\n",
|
||||
vty_out(vty, " bgp confederation identifier %u\n",
|
||||
bgp->confed_id);
|
||||
|
||||
/* Confederation peer */
|
||||
|
Loading…
Reference in New Issue
Block a user