diff options
author | David Lamparter <equinox@diac24.net> | 2020-03-24 19:15:04 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-03-24 19:43:18 +0100 |
commit | 63efca0e95c727318485fe6d37141f79b1401a88 (patch) | |
tree | c07189c4864e1358e043cd25d8fdf76752ea899e /ospfd/ospf_ri.c | |
parent | *: remove tabs from log messages (diff) | |
download | frr-63efca0e95c727318485fe6d37141f79b1401a88.tar.xz frr-63efca0e95c727318485fe6d37141f79b1401a88.zip |
*: remove line breaks from log messages
Line break at the end of the message is implicit for zlog_* and flog_*,
don't put it in the string. Mid-message line breaks are currently
unsupported. (LF is "end of message" in syslog.)
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospfd/ospf_ri.c')
-rw-r--r-- | ospfd/ospf_ri.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ospfd/ospf_ri.c b/ospfd/ospf_ri.c index 5f01edfbd..fbe513cea 100644 --- a/ospfd/ospf_ri.c +++ b/ospfd/ospf_ri.c @@ -1382,9 +1382,8 @@ static uint16_t show_vty_sr_algorithm(struct vty *vty, struct tlv_header *tlvh) zlog_debug(" Algorithm %d: Strict SPF", i); break; default: - zlog_debug( - " Algorithm %d: Unknown value %d\n", - i, algo->value[i]); + zlog_debug(" Algorithm %d: Unknown value %d", + i, algo->value[i]); break; } } |