diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2020-01-31 19:04:00 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2020-02-04 21:19:04 +0100 |
commit | 362353195a9df13776a1999113720542f1bd8a14 (patch) | |
tree | 8c403ef53cdfe43d17d8006046d2afeb97b814d4 /bgpd/bgp_packet.h | |
parent | bgpd: use _RO list iter variant for gr macro (diff) | |
download | frr-362353195a9df13776a1999113720542f1bd8a14.tar.xz frr-362353195a9df13776a1999113720542f1bd8a14.zip |
bgpd, lib: fix style from BGP GR code
This patch fixes the noncompliant style for the following commit range:
4a6e80fbf
2ba1fe695
efcb2ebbb
8c48b3b69
dc95985fe
0f0444fbd
85ef4179a
eb451ee58
2d3dd828d
9e3b51a7f
d6e3c15b6
34aa74486
6102cb7fe
d7b3cda6f
2bb5d39b1
5f9c1aa29
5cce3f054
3a75afa4b
f009ff269
cfd47646b
2986cac29
055679e91
034e185dc
794b37d52
b0965c44e
949b0f24f
63696f1d8
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_packet.h')
-rw-r--r-- | bgpd/bgp_packet.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bgpd/bgp_packet.h b/bgpd/bgp_packet.h index 0242abab2..e83f7d950 100644 --- a/bgpd/bgp_packet.h +++ b/bgpd/bgp_packet.h @@ -48,13 +48,13 @@ DECLARE_HOOK(bgp_packet_send, #define ORF_COMMON_PART_PERMIT 0x00 #define ORF_COMMON_PART_DENY 0x20 -#define BGP_UPDATE_EOR_PKT(_peer, _afi, _safi, _s) \ - do { \ - _s = bgp_update_packet_eor(_peer, _afi, _safi); \ - if (_s) { \ - bgp_packet_add(_peer, _s); \ - } \ - } while (0) +#define BGP_UPDATE_EOR_PKT(_peer, _afi, _safi, _s) \ + do { \ + _s = bgp_update_packet_eor(_peer, _afi, _safi); \ + if (_s) { \ + bgp_packet_add(_peer, _s); \ + } \ + } while (0) /* Packet send and receive function prototypes. */ extern void bgp_keepalive_send(struct peer *); |