summaryrefslogtreecommitdiff
path: root/proto/static
diff options
context:
space:
mode:
Diffstat (limited to 'proto/static')
-rw-r--r--proto/static/static.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/proto/static/static.c b/proto/static/static.c
index 4b72fa9d..e7e7ab15 100644
--- a/proto/static/static.c
+++ b/proto/static/static.c
@@ -352,6 +352,12 @@ static_if_notify(struct proto *p, unsigned flags, struct iface *i)
}
}
+int
+static_rte_mergable(rte *pri, rte *sec)
+{
+ return 1;
+}
+
void
static_init_config(struct static_config *c)
{
@@ -366,6 +372,7 @@ static_init(struct proto_config *c)
p->neigh_notify = static_neigh_notify;
p->if_notify = static_if_notify;
+ p->rte_mergable = static_rte_mergable;
return p;
}