summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-04-12 09:20:20 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-04-12 09:20:20 -0400
commit9fc1522cfbb0d87ed55d5c5f78eb82c84b81c9c8 (patch)
tree0dca329987317551b066fcd59fd7354c06652f7d
parente9d2cbdebf26a264a3053abef9cfa9321e9a5cdd (diff)
zebra: Cleanup lines over 80 columns
Cleanup warnings in lines over 80 columns. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r--zebra/zebra_vxlan.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c
index b851ba41d5..6e901a0457 100644
--- a/zebra/zebra_vxlan.c
+++ b/zebra/zebra_vxlan.c
@@ -2005,7 +2005,8 @@ static int zvni_local_neigh_update(zebra_vni_t *zvni,
ETH_ALEN) != 0) {
old_zmac = zvni_mac_lookup(zvni, &n->emac);
if (old_zmac) {
- listnode_delete(old_zmac->neigh_list, n);
+ listnode_delete(old_zmac->neigh_list,
+ n);
zvni_deref_ip2mac(zvni, old_zmac, 0);
}
@@ -2091,12 +2092,10 @@ static int zvni_remote_neigh_update(zebra_vni_t *zvni,
*/
zmac = zvni_mac_lookup(zvni, macaddr);
if (!zmac || !CHECK_FLAG(zmac->flags, ZEBRA_MAC_REMOTE)) {
- zlog_err(
- "Ignore remote neigh %s (MAC %s) on L2-VNI %u "
- "- MAC unknown or local",
- ipaddr2str(&n->ip, buf2, sizeof(buf2)),
- prefix_mac2str(macaddr, buf, sizeof(buf)),
- zvni->vni);
+ zlog_err("Ignore remote neigh %s (MAC %s) on L2-VNI %u - MAC unknown or local",
+ ipaddr2str(&n->ip, buf2, sizeof(buf2)),
+ prefix_mac2str(macaddr, buf, sizeof(buf)),
+ zvni->vni);
return -1;
}