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/bfd | |
parent | 0bb4e37db317a1290bad24fe430cac6569a9bd8c (diff) |
Fixes problem with source address selection in BGP and BFD.
Diffstat (limited to 'proto/bfd')
-rw-r--r-- | proto/bfd/bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bfd/bfd.c b/proto/bfd/bfd.c index 89355483..b697e84c 100644 --- a/proto/bfd/bfd.c +++ b/proto/bfd/bfd.c @@ -740,7 +740,7 @@ bfd_neigh_notify(struct neighbor *nb) if ((nb->scope > 0) && !n->req) { - ip_addr local = ipa_nonzero(n->local) ? n->local : nb->iface->addr->ip; + ip_addr local = ipa_nonzero(n->local) ? n->local : nb->ifa->ip; n->req = bfd_request_session(p->p.pool, n->addr, local, nb->iface, NULL, NULL); } |