mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 15:18:06 +00:00
vrrpd: fix err messaging for ipv6 addr add
* Add newline to message * Change pasted IPv4 to IPv6 Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
This commit is contained in:
parent
f828842a69
commit
d5a6ff434e
@ -218,12 +218,12 @@ DEFPY(vrrp_ip6,
|
|||||||
if (deactivated)
|
if (deactivated)
|
||||||
vty_out(vty, "%% Deactivated IPv6 Virtual Router %ld\n", vrid);
|
vty_out(vty, "%% Deactivated IPv6 Virtual Router %ld\n", vrid);
|
||||||
if (failed) {
|
if (failed) {
|
||||||
vty_out(vty, "%% Failed to %s virtual IP",
|
vty_out(vty, "%% Failed to %s virtual IP\n",
|
||||||
no ? "remove" : "add");
|
no ? "remove" : "add");
|
||||||
ret = CMD_WARNING_CONFIG_FAILED;
|
ret = CMD_WARNING_CONFIG_FAILED;
|
||||||
if (will_activate && !activated) {
|
if (will_activate && !activated) {
|
||||||
vty_out(vty,
|
vty_out(vty,
|
||||||
"%% Failed to activate IPv4 Virtual Router %ld\n",
|
"%% Failed to activate IPv6 Virtual Router %ld\n",
|
||||||
vrid);
|
vrid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user