diff options
author | anlan_cs <vic.lan@pica8.com> | 2022-02-27 02:38:29 +0100 |
---|---|---|
committer | anlan_cs <vic.lan@pica8.com> | 2022-02-27 03:59:19 +0100 |
commit | 4d4c404bf6f82ec7df67baff072e4f237c47180e (patch) | |
tree | 08fea36c37bb809f3fed67088c5c521120281140 /pbrd | |
parent | Merge pull request #10665 from opensourcerouting/pim6-fix-warning (diff) | |
download | frr-4d4c404bf6f82ec7df67baff072e4f237c47180e.tar.xz frr-4d4c404bf6f82ec7df67baff072e4f237c47180e.zip |
*: Add necessary new line for output of vty_out()
Signed-off-by: anlan_cs <vic.lan@pica8.com>
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 21c1409e9..b5946bd40 100644 --- a/pbrd/pbr_vty.c +++ b/pbrd/pbr_vty.c @@ -358,7 +358,7 @@ DEFPY(pbr_map_match_mark, pbr_map_match_mark_cmd, struct pbr_map_sequence *pbrms = VTY_GET_CONTEXT(pbr_map_sequence); #ifndef GNU_LINUX - vty_out(vty, "pbr marks are not supported on this platform"); + vty_out(vty, "pbr marks are not supported on this platform\n"); return CMD_WARNING_CONFIG_FAILED; #endif |