From c6b077a56ebcd320f464f05f13814391b9162990 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Thu, 5 Jan 2023 09:19:43 +0200 Subject: [PATCH] bgpd: Fix the number of arguments for frrtrace() For bgp_path_info_add_with_caller(). Signed-off-by: Donatas Abraitis --- bgpd/bgp_route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index 4bb77b5952..0ef939875a 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -394,7 +394,7 @@ static int bgp_dest_set_defer_flag(struct bgp_dest *dest, bool delete) void bgp_path_info_add_with_caller(const char *name, struct bgp_dest *dest, struct bgp_path_info *pi) { - frrtrace(2, frr_bgp, bgp_path_info_add, dest, pi, name); + frrtrace(3, frr_bgp, bgp_path_info_add, dest, pi, name); struct bgp_path_info *top; top = bgp_dest_get_bgp_path_info(dest); -- 2.39.5