From: Ondrej Zajicek (work) Date: Tue, 28 Mar 2017 16:14:32 +0000 (+0200) Subject: Netlink: Fix device route delete X-Git-Tag: v2.0.0-pre1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7074be22f1a8a42ec738fd34125e36a732f311a5;p=thirdparty%2Fbird.git Netlink: Fix device route delete --- diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index 68d8560cc..897c3c6c8 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -1143,7 +1143,7 @@ nl_send_route(struct krt_proto *p, rte *e, struct ea_list *eattrs, int op, int d r->r.rtm_family = p->af; r->r.rtm_dst_len = net_pxlen(net->n.addr); r->r.rtm_protocol = RTPROT_BIRD; - r->r.rtm_scope = RT_SCOPE_UNIVERSE; + r->r.rtm_scope = RT_SCOPE_NOWHERE; if (p->af == AF_MPLS) { u32 label = net_mpls(net->n.addr);