Blame 0005-json-c-0.14.0.patch

57c8988
diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
57c8988
index 5f4486b80..da57ffa83 100644
57c8988
--- a/bgpd/bgp_route.c
57c8988
+++ b/bgpd/bgp_route.c
57c8988
@@ -9922,7 +9922,7 @@ static int bgp_show_route_in_table(struct vty *vty, struct bgp *bgp,
57c8988
 		}
57c8988
 	} else if (safi == SAFI_EVPN) {
57c8988
 		struct bgp_node *longest_pfx;
57c8988
-		bool is_exact_pfxlen_match = FALSE;
57c8988
+		bool is_exact_pfxlen_match = false;
fbca0ae
 
57c8988
 		for (rn = bgp_table_top(rib); rn; rn = bgp_route_next(rn)) {
57c8988
 			if (prd && memcmp(rn->p.u.val, prd->val, 8) != 0)
57c8988
@@ -9932,7 +9932,7 @@ static int bgp_show_route_in_table(struct vty *vty, struct bgp *bgp,
57c8988
 				continue;
57c8988
 
57c8988
 			longest_pfx = NULL;
57c8988
-			is_exact_pfxlen_match = FALSE;
57c8988
+			is_exact_pfxlen_match = false;
57c8988
 			/*
57c8988
 			 * Search through all the prefixes for a match.  The
57c8988
 			 * pfx's are enumerated in ascending order of pfxlens.
57c8988
@@ -9951,7 +9951,7 @@ static int bgp_show_route_in_table(struct vty *vty, struct bgp *bgp,
57c8988
 					int type5_pfxlen =
57c8988
 					   bgp_evpn_get_type5_prefixlen(&rm->p);
57c8988
 					if (type5_pfxlen == match.prefixlen) {
57c8988
-						is_exact_pfxlen_match = TRUE;
57c8988
+						is_exact_pfxlen_match = true;
57c8988
 						bgp_unlock_node(rm);
57c8988
 						break;
57c8988
 					}