diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-31 19:35:53 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-31 19:48:17 +0200 |
commit | b06427987d1015bedc7d43c0087eab7671b097b4 (patch) | |
tree | dbb7aeaa3344cd5208d392bccaca0f6b576976d8 /zebra/connected.c | |
parent | zebra: Abstract what we can of connected_delete_ipv[4|6] (diff) | |
download | frr-b06427987d1015bedc7d43c0087eab7671b097b4.tar.xz frr-b06427987d1015bedc7d43c0087eab7671b097b4.zip |
zebra: Cleanup some typos
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | zebra/connected.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/connected.c b/zebra/connected.c index 2da9f40fc..77a560c6b 100644 --- a/zebra/connected.c +++ b/zebra/connected.c @@ -416,7 +416,7 @@ void connected_down(struct interface *ifp, struct connected *ifc) if (IS_ZEBRA_DEBUG_MPLS) { char buf[PREFIX_STRLEN]; - zlog_debug("%u: IF %s IP %s address add/up, scheduling MPLS processing", + zlog_debug("%u: IF %s IP %s address down, scheduling MPLS processing", ifp->vrf_id, ifp->name, prefix2str(&p, buf, sizeof(buf))); } @@ -448,7 +448,7 @@ static void connected_delete_helper(struct connected *ifc, struct prefix *p) if (IS_ZEBRA_DEBUG_MPLS) { char buf[PREFIX_STRLEN]; - zlog_debug("%u: IF %s IP %s address add/up, scheduling MPLS processing", + zlog_debug("%u: IF %s IP %s address delete, scheduling MPLS processing", ifp->vrf_id, ifp->name, prefix2str(p, buf, sizeof(buf))); } |