diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2019-02-20 19:34:17 +0100 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2019-02-21 03:04:12 +0100 |
commit | 220c5830e7093f8c903a689fc61ef64b372778fe (patch) | |
tree | 3c49ba8894dc8a0e8d05da1f8c81882bf5ae1bd3 /pbrd | |
parent | pbrd: fix removal of ipv6 nexthops (diff) | |
download | frr-220c5830e7093f8c903a689fc61ef64b372778fe.tar.xz frr-220c5830e7093f8c903a689fc61ef64b372778fe.zip |
pbrd: add missing newline at the end of warning message
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'pbrd')
-rw-r--r-- | pbrd/pbr_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbrd/pbr_vty.c b/pbrd/pbr_vty.c index 2b6c38593..f8232c958 100644 --- a/pbrd/pbr_vty.c +++ b/pbrd/pbr_vty.c @@ -300,7 +300,7 @@ DEFPY(pbr_map_nexthop, pbr_map_nexthop_cmd, char buf[PBR_NHC_NAMELEN]; if (no) { - vty_out(vty, "No nexthops to delete"); + vty_out(vty, "No nexthops to delete\n"); return CMD_WARNING_CONFIG_FAILED; } |