diff options
author | Donald Sharp <sharpd@nvidia.com> | 2021-05-19 20:51:23 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2021-05-19 21:10:48 +0200 |
commit | 55370b95648c7b85c37e55bef2a618e127c5075b (patch) | |
tree | 83f40ba0c4ddd01f07ff4d986589b222e5a9a7d4 /ospfd/ospf_ri.c | |
parent | Merge pull request #8645 from idryzhov/ospf6-redistribute-fixes (diff) | |
download | frr-55370b95648c7b85c37e55bef2a618e127c5075b.tar.xz frr-55370b95648c7b85c37e55bef2a618e127c5075b.zip |
ospfd: New code adds newline to log files
FRR is not using newlines in log messages. Remove them.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospfd/ospf_ri.c')
-rw-r--r-- | ospfd/ospf_ri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_ri.c b/ospfd/ospf_ri.c index 4b7794310..602f98d14 100644 --- a/ospfd/ospf_ri.c +++ b/ospfd/ospf_ri.c @@ -1231,7 +1231,7 @@ static int ospf_router_info_lsa_update(struct ospf_lsa *lsa) vty_out(vty, " Wrong %s TLV size: %d(%d)\n", \ msg, ntohs(tlvh->length), size); \ else \ - zlog_debug(" Wrong %s TLV size: %d(%d)\n", \ + zlog_debug(" Wrong %s TLV size: %d(%d)", \ msg, ntohs(tlvh->length), size); \ return size + TLV_HDR_SIZE; \ } \ |