diff options
author | David Lamparter <equinox@diac24.net> | 2020-03-24 17:38:20 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-03-24 18:47:12 +0100 |
commit | d6951e5ef9d0dc529dd94871f7186ca19b0459c8 (patch) | |
tree | 67f4482ef1d8f4b57f546adee863d7d9c7af65d4 /zebra/redistribute.c | |
parent | Merge pull request #6050 from sworleys/PBR-No-Fail-Same-VRF (diff) | |
download | frr-d6951e5ef9d0dc529dd94871f7186ca19b0459c8.tar.xz frr-d6951e5ef9d0dc529dd94871f7186ca19b0459c8.zip |
*: remove tabs from log messages
Some logging systems are, er, "allergic" to tabs in log messages.
(RFC5424: "The syslog application SHOULD avoid octet values below 32")
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/redistribute.c')
-rw-r--r-- | zebra/redistribute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/redistribute.c b/zebra/redistribute.c index 80cc18a57..30ea19fca 100644 --- a/zebra/redistribute.c +++ b/zebra/redistribute.c @@ -268,7 +268,7 @@ void redistribute_delete(const struct prefix *p, const struct prefix *src_p, /* Add DISTANCE_INFINITY check. */ if (old_re && (old_re->distance == DISTANCE_INFINITY)) { if (IS_ZEBRA_DEBUG_RIB) - zlog_debug("\tSkipping due to Infinite Distance"); + zlog_debug(" Skipping due to Infinite Distance"); return; } |