From b259f5af1463a94f6dfe27b7343fbda1b64a9f4b Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sat, 17 Apr 2021 18:03:46 -0400 Subject: [PATCH] ospfd: Fix indentation in ospf_is_type_redistributed clang-format was not happy. Signed-off-by: Donald Sharp --- ospfd/ospf_zebra.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ospfd/ospf_zebra.c b/ospfd/ospf_zebra.c index dfbb9aa2f8..f198995dfa 100644 --- a/ospfd/ospf_zebra.c +++ b/ospfd/ospf_zebra.c @@ -766,12 +766,12 @@ int ospf_is_type_redistributed(struct ospf *ospf, int type, ospf->vrf_id) : ((instance && redist_check_instance( - &zclient->mi_redist[AFI_IP][type], - instance)) + &zclient->mi_redist[AFI_IP][type], + instance)) || (!instance && vrf_bitmap_check( - zclient->redist[AFI_IP][type], - ospf->vrf_id)))); + zclient->redist[AFI_IP][type], + ospf->vrf_id)))); } int ospf_redistribute_set(struct ospf *ospf, int type, unsigned short instance,