mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-02 20:44:29 +00:00
bgpd: swap bgp error value with file descriptor value
the values were swapped by mistake. fix it. Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
This commit is contained in:
parent
d24f4b7d84
commit
046bb34781
@ -2718,7 +2718,7 @@ int bgp_packet_process_error(struct thread *thread)
|
||||
|
||||
if (bgp_debug_neighbor_events(peer))
|
||||
zlog_debug("%s [Event] BGP error %d on fd %d",
|
||||
peer->host, peer->fd, code);
|
||||
peer->host, code, peer->fd);
|
||||
|
||||
/* Closed connection or error on the socket */
|
||||
if (peer_established(peer)) {
|
||||
|
Loading…
Reference in New Issue
Block a user