diff options
author | Pascal Mathis <mail@pascalmathis.com> | 2018-05-27 19:36:48 +0200 |
---|---|---|
committer | Pascal Mathis <mail@pascalmathis.com> | 2018-05-28 19:25:51 +0200 |
commit | cf9ac8bfb04288a9befd0c38de2259e5f7ee4544 (patch) | |
tree | b7d819f2b88fccde92fa31c95e10726eb1299d8c /bgpd/bgpd.h | |
parent | bgpd: Fix group overrides for AF flags/filters (diff) | |
download | frr-cf9ac8bfb04288a9befd0c38de2259e5f7ee4544.tar.xz frr-cf9ac8bfb04288a9befd0c38de2259e5f7ee4544.zip |
bgpd: Fix style issues for peer-group overrides
This commit fixes all outstanding style/formatting issues as detected by
'git clang-format' or 'checkpath' for the new peer-group override
implementation, which spanned across several commits.
Signed-off-by: Pascal Mathis <mail@pascalmathis.com>
Diffstat (limited to 'bgpd/bgpd.h')
-rw-r--r-- | bgpd/bgpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index 97061681f..13fed9ac0 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -1555,7 +1555,8 @@ extern int peer_flag_unset(struct peer *, uint32_t); extern int peer_af_flag_set(struct peer *, afi_t, safi_t, uint32_t); extern int peer_af_flag_unset(struct peer *, afi_t, safi_t, uint32_t); extern int peer_af_flag_check(struct peer *, afi_t, safi_t, uint32_t); -extern void peer_af_flag_inherit(struct peer *, afi_t, safi_t, uint32_t); +extern void peer_af_flag_inherit(struct peer *peer, afi_t afi, safi_t safi, + uint32_t flag); extern int peer_ebgp_multihop_set(struct peer *, int); extern int peer_ebgp_multihop_unset(struct peer *); |