summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2023-01-06 07:43:39 -0500
committerGitHub <noreply@github.com>2023-01-06 07:43:39 -0500
commit092b63fc8f892bc9533d009449a0b7009089740d (patch)
treecfde2ac476e842b018dae0dec1b360ec0eebaf75
parentb6e91c32e844163ba986cfdee6606363e99c5f55 (diff)
parentc6b077a56ebcd320f464f05f13814391b9162990 (diff)
Merge pull request #12596 from opensourcerouting/fix/frrtrace_arguments
bgpd: Fix the number of arguments for frrtrace()
-rw-r--r--bgpd/bgp_route.c2
1 files changed, 1 insertions, 1 deletions
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);