summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2010-08-13 14:30:36 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2010-08-13 14:30:36 +0200
commitac4a1eedfc515e041877d48fd5f64ee4e3b30532 (patch)
treec23399e03c7c0148b07d7ad2a99a976b6b05f21a
parentdcc71a7fb7e507acc2e0b417e6c9d1940448908e (diff)
downloadbird-ac4a1eedfc515e041877d48fd5f64ee4e3b30532.tar
bird-ac4a1eedfc515e041877d48fd5f64ee4e3b30532.zip
Change default for handling missing link-local addresses on route servers.
-rw-r--r--proto/bgp/bgp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c
index 1f723ae..ba5d755 100644
--- a/proto/bgp/bgp.c
+++ b/proto/bgp/bgp.c
@@ -973,7 +973,7 @@ bgp_check(struct bgp_config *c)
/* Different default based on rs_client */
if (!c->missing_lladdr)
- c->missing_lladdr = c->rs_client ? MLL_DROP : MLL_SELF;
+ c->missing_lladdr = c->rs_client ? MLL_IGNORE : MLL_SELF;
/* Different default for gw_mode */
if (!c->gw_mode)