summaryrefslogtreecommitdiff
path: root/bgpd/bgp_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'bgpd/bgp_io.c')
-rw-r--r--bgpd/bgp_io.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bgpd/bgp_io.c b/bgpd/bgp_io.c
index 75d34a84e0..aba28fa504 100644
--- a/bgpd/bgp_io.c
+++ b/bgpd/bgp_io.c
@@ -134,7 +134,7 @@ static void bgp_process_writes(struct thread *thread)
struct frr_pthread *fpt = bgp_pth_io;
- frr_with_mutex(&peer->io_mtx) {
+ frr_with_mutex (&peer->io_mtx) {
status = bgp_write(peer);
reschedule = (stream_fifo_head(peer->obuf) != NULL);
}
@@ -188,7 +188,7 @@ static void bgp_process_reads(struct thread *thread)
struct frr_pthread *fpt = bgp_pth_io;
- frr_with_mutex(&peer->io_mtx) {
+ frr_with_mutex (&peer->io_mtx) {
status = bgp_read(peer, &code);
}
@@ -247,7 +247,7 @@ static void bgp_process_reads(struct thread *thread)
stream_set_endp(pkt, pktsize);
frrtrace(2, frr_bgp, packet_read, peer, pkt);
- frr_with_mutex(&peer->io_mtx) {
+ frr_with_mutex (&peer->io_mtx) {
stream_fifo_push(peer->ibuf, pkt);
}