summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-08-17 09:48:21 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-08-17 09:48:21 -0400
commit3bbde7327a20efe80a58574a784290206c8efc93 (patch)
tree2c563a725e3b6078b7f9b4c7d9008ed9c2998ec8
parentf66bd13f3c51b30e3f08d228b017d899713dc173 (diff)
eigrpd: Remove extra newline in debug
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r--eigrpd/eigrp_fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_fsm.c b/eigrpd/eigrp_fsm.c
index 8e2a26447e..ba2d1f7e8d 100644
--- a/eigrpd/eigrp_fsm.c
+++ b/eigrpd/eigrp_fsm.c
@@ -333,7 +333,7 @@ int eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)
*/
int eigrp_fsm_event(struct eigrp_fsm_action_message *msg, int event)
{
- zlog_info("EIGRP AS: %d State: %d Event: %d Network: %s\n",
+ zlog_info("EIGRP AS: %d State: %d Event: %d Network: %s",
msg->eigrp->AS, msg->prefix->state, event,
eigrp_topology_ip_string(msg->prefix));
(*(NSM[msg->prefix->state][event].func))(msg);