diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-04 14:41:51 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-04 15:39:53 +0200 |
commit | 1c30b689ddd032ef8000fb7836348a48ba3184ff (patch) | |
tree | c2fdb9a74c235af77e3587eb7c5c762dcdc62dd4 /proto/static | |
parent | 702c04fbef222e802ca4dfac645dc75ede522db6 (diff) |
Moved route source attribute (RTS_*) to eattrs
Diffstat (limited to 'proto/static')
-rw-r--r-- | proto/static/static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/static/static.c b/proto/static/static.c index ff833b16..1400e985 100644 --- a/proto/static/static.c +++ b/proto/static/static.c @@ -55,9 +55,9 @@ static_announce_rte(struct static_proto *p, struct static_route *r) { rta *a = allocz(RTA_MAX_SIZE); struct rte_src *src = static_get_source(p, r->index); - a->source = RTS_STATIC; a->dest = r->dest; ea_set_attr_u32(&a->eattrs, &ea_gen_preference, 0, p->p.main_channel->preference); + ea_set_attr_u32(&a->eattrs, &ea_gen_source, 0, RTS_STATIC); if (r->dest == RTD_UNICAST) { |