From: Trey Aspelund Date: Wed, 20 Nov 2019 21:23:02 +0000 (-0500) Subject: staticd: remove unneeded newline from zlog call X-Git-Tag: base_7.3~144^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F5398%2Fhead;p=mirror%2Ffrr.git staticd: remove unneeded newline from zlog call PR 5303 was merged before the newline was removed from the zlog call. Signed-off-by: Trey Aspelund --- diff --git a/staticd/static_vty.c b/staticd/static_vty.c index 48ad10e90c..8db37589af 100644 --- a/staticd/static_vty.c +++ b/staticd/static_vty.c @@ -434,7 +434,7 @@ static int static_route_leak( "%% Nexthop interface name can not be from reserved keywords (Null0, reject, blackhole)\n"); else zlog_warn( - "%s: %s: Nexthop interface name can not be from reserved keywords (Null0, reject, blackhole)\n", + "%s: %s: Nexthop interface name can not be from reserved keywords (Null0, reject, blackhole)", __PRETTY_FUNCTION__, dest_str); return CMD_WARNING_CONFIG_FAILED; }