diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-17 15:48:21 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-17 15:48:21 +0200 |
commit | 3bbde7327a20efe80a58574a784290206c8efc93 (patch) | |
tree | 2c563a725e3b6078b7f9b4c7d9008ed9c2998ec8 /eigrpd/eigrp_fsm.c | |
parent | Merge pull request #994 from dwalton76/ospfd-show-neighbor (diff) | |
download | frr-3bbde7327a20efe80a58574a784290206c8efc93.tar.xz frr-3bbde7327a20efe80a58574a784290206c8efc93.zip |
eigrpd: Remove extra newline in debug
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_fsm.c')
-rw-r--r-- | eigrpd/eigrp_fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_fsm.c b/eigrpd/eigrp_fsm.c index 8e2a26447..ba2d1f7e8 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); |