Merge pull request #12596 from opensourcerouting/fix/frrtrace_arguments

bgpd: Fix the number of arguments for frrtrace()
This commit is contained in:
Donald Sharp 2023-01-06 07:43:39 -05:00 committed by GitHub
commit 092b63fc8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);