mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-08 09:30:30 +00:00
Merge pull request #12442 from cscarpitta/fix/fix-srv6-behavior-in-config-write
zebra: Fix missing newline character in the of SRv6 config write function
This commit is contained in:
commit
388b800fb7
@ -434,9 +434,9 @@ static int zebra_sr_config(struct vty *vty)
|
|||||||
if (locator->argument_bits_length)
|
if (locator->argument_bits_length)
|
||||||
vty_out(vty, " arg-len %u",
|
vty_out(vty, " arg-len %u",
|
||||||
locator->argument_bits_length);
|
locator->argument_bits_length);
|
||||||
if (CHECK_FLAG(locator->flags, SRV6_LOCATOR_USID))
|
|
||||||
vty_out(vty, " behavior usid");
|
|
||||||
vty_out(vty, "\n");
|
vty_out(vty, "\n");
|
||||||
|
if (CHECK_FLAG(locator->flags, SRV6_LOCATOR_USID))
|
||||||
|
vty_out(vty, " behavior usid\n");
|
||||||
vty_out(vty, " exit\n");
|
vty_out(vty, " exit\n");
|
||||||
vty_out(vty, " !\n");
|
vty_out(vty, " !\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user