diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-12-02 11:54:32 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-12-02 11:54:32 +0100 |
commit | 2d0b7e24a52d51904faa8a8e96d68863491c110a (patch) | |
tree | 74e2ecdce593149a62bf7b43ba61235e20338ece /proto/bgp/bgp.c | |
parent | 0bb4e37db317a1290bad24fe430cac6569a9bd8c (diff) |
Fixes problem with source address selection in BGP and BFD.
Diffstat (limited to 'proto/bgp/bgp.c')
-rw-r--r-- | proto/bgp/bgp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index f5b6b8fc..7cd0b0ae 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -718,9 +718,8 @@ bgp_start_neighbor(struct bgp_proto *p) { /* Called only for single-hop BGP sessions */ - /* Remove this ? */ if (ipa_zero(p->source_addr)) - p->source_addr = p->neigh->iface->addr->ip; + p->source_addr = p->neigh->ifa->ip; #ifdef IPV6 { |