diff options
| author | Trey Aspelund <taspelund@cumulusnetworks.com> | 2019-11-20 16:23:02 -0500 |
|---|---|---|
| committer | Trey Aspelund <taspelund@cumulusnetworks.com> | 2019-11-20 16:26:08 -0500 |
| commit | 8751e3bca556c1366f7598d46a0591b52ddb4b64 (patch) | |
| tree | 7552a2e414b9e33e799335ebe89b0c6c7331892d | |
| parent | 684912f5093b7bd534acaf1052959223e35a76b7 (diff) | |
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 <taspelund@cumulusnetworks.com>
| -rw-r--r-- | staticd/static_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
