From: Christian Franke Date: Sat, 1 Oct 2016 02:06:03 +0000 (+0200) Subject: ospfd: Update route in zebra when tag changes X-Git-Tag: frr-2.0-rc1~171 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e7331dea737788c1e7590eac104430aa98cf9f38;p=matthieu%2Ffrr.git ospfd: Update route in zebra when tag changes Signed-off-by: Christian Franke --- diff --git a/ospfd/ospf_ase.c b/ospfd/ospf_ase.c index 74c1711ef1..fe40b10171 100644 --- a/ospfd/ospf_ase.c +++ b/ospfd/ospf_ase.c @@ -598,6 +598,10 @@ ospf_ase_route_match_same (struct route_table *rt, struct prefix *prefix, if (op->ifindex != newop->ifindex) return 0; } + + if (or->u.ext.tag != newor->u.ext.tag) + return 0; + return 1; }