diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-11 22:21:49 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-05-17 02:27:08 +0200 |
commit | 1af0eb1f2923b211bf1efdd206d8a4fc08de56cb (patch) | |
tree | 517950c1fb5bbe30ed31500d5d3992efa0efc5c4 /vrrpd/vrrp_vty.c | |
parent | vrrpd: autoconfig support, continued (diff) | |
download | frr-1af0eb1f2923b211bf1efdd206d8a4fc08de56cb.tar.xz frr-1af0eb1f2923b211bf1efdd206d8a4fc08de56cb.zip |
vrrpd: fix missing \n in cli
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vrrpd/vrrp_vty.c')
-rw-r--r-- | vrrpd/vrrp_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vrrpd/vrrp_vty.c b/vrrpd/vrrp_vty.c index 0a91026d7..05695f794 100644 --- a/vrrpd/vrrp_vty.c +++ b/vrrpd/vrrp_vty.c @@ -170,7 +170,7 @@ DEFPY(vrrp_ip, if (deactivated) vty_out(vty, "%% Deactivated IPv4 Virtual Router %ld\n", vrid); if (failed) { - vty_out(vty, "%% Failed to %s virtual IP", + vty_out(vty, "%% Failed to %s virtual IP\n", no ? "remove" : "add"); ret = CMD_WARNING_CONFIG_FAILED; if (will_activate && !activated) { |