summaryrefslogtreecommitdiff
path: root/lib/vrf.c
diff options
context:
space:
mode:
authorSri Mohana Singamsetty <srimohans@gmail.com>2019-03-15 10:27:54 -0700
committerGitHub <noreply@github.com>2019-03-15 10:27:54 -0700
commit61be0e35f2e70a926b752181fd9978ea3d98a5aa (patch)
treefae9c112299282a24d1f9a803bbd81e14c1d79b3 /lib/vrf.c
parentf05d8880492312e5ca79dfd6eb174d066ff07eb9 (diff)
parent9165c5f5ff9586e4688b3cbac265d3593f1231cc (diff)
Merge pull request #3949 from qlyoung/remove-zlog-newlines
*: remove trailing newlines from zlog messages
Diffstat (limited to 'lib/vrf.c')
-rw-r--r--lib/vrf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vrf.c b/lib/vrf.c
index df93bc33b9..ab47f242fd 100644
--- a/lib/vrf.c
+++ b/lib/vrf.c
@@ -662,7 +662,7 @@ int vrf_netns_handler_create(struct vty *vty, struct vrf *vrf, char *pathname,
"VRF %u is already configured with VRF %s\n",
vrf->vrf_id, vrf->name);
else
- zlog_info("VRF %u is already configured with VRF %s\n",
+ zlog_info("VRF %u is already configured with VRF %s",
vrf->vrf_id, vrf->name);
return CMD_WARNING_CONFIG_FAILED;
}