Skip to content

Commit

Permalink
Merge pull request #16046 from FRRouting/mergify/bp/stable/9.1/pr-16033
Browse files Browse the repository at this point in the history
bgpd: Fix logging message when receiving a software version capability (backport #16033)
  • Loading branch information
donaldsharp authored May 20, 2024
2 parents f6b0597 + 14be91a commit e9d4f48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bgpd/bgp_open.c
Original file line number Diff line number Diff line change
Expand Up @@ -919,8 +919,8 @@ static int bgp_capability_software_version(struct peer *peer,
peer->soft_version = XSTRDUP(MTYPE_BGP_SOFT_VERSION, str);

if (bgp_debug_neighbor_events(peer))
zlog_debug("%s sent Software Version: %s", peer->host,
peer->soft_version);
zlog_debug("%s received Software Version: %s",
peer->host, peer->soft_version);
}

return 0;
Expand Down

0 comments on commit e9d4f48

Please sign in to comment.