diff options
| author | Renato Westphal <renato@openbsd.org> | 2017-08-04 11:34:23 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-04 11:34:23 -0300 |
| commit | ef8482267d2cc90053e422b88a9744cea315e70b (patch) | |
| tree | 7e54e58e9cc4dda8cdd90d6486439d0559499147 | |
| parent | 6b367962158aba5567b7f01a3cad39b2de53828b (diff) | |
| parent | 05d2cb510d5ebb393c53ccc4c0f2e0498e25c229 (diff) | |
Merge pull request #908 from donaldsharp/safi
bgpd: Fix safi_t confusion wition iana_safi_t
| -rw-r--r-- | bgpd/bgp_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_open.c b/bgpd/bgp_open.c index 2c988f86cc..3ee865e3ba 100644 --- a/bgpd/bgp_open.c +++ b/bgpd/bgp_open.c @@ -271,7 +271,7 @@ static int bgp_capability_mp(struct peer *peer, struct capability_header *hdr) } static void bgp_capability_orf_not_support(struct peer *peer, iana_afi_t afi, - safi_t safi, u_char type, + iana_safi_t safi, u_char type, u_char mode) { if (bgp_debug_neighbor_events(peer)) |
