diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-30 17:18:03 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-30 17:18:03 +0200 |
commit | 1a92ee9d4df265018c0344064019f53bc3afce3a (patch) | |
tree | 3eb67d0604086b399618bc525a83ce83deac9eb0 /filter/f-inst.c | |
parent | 674587d9c84ed70151abc56003c371668079ae31 (diff) | |
parent | 337c04c45e1472d6d9b531a3c55f1f2d30ebf308 (diff) |
Merge commit '337c04c45e1472d6d9b531a3c55f1f2d30ebf308' into haugesund
Diffstat (limited to 'filter/f-inst.c')
-rw-r--r-- | filter/f-inst.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/filter/f-inst.c b/filter/f-inst.c index 5d78c98e..be1c3e1d 100644 --- a/filter/f-inst.c +++ b/filter/f-inst.c @@ -543,7 +543,6 @@ case SA_IFNAME: RESULT(sa.type, s, rta->nh.iface ? rta->nh.iface->name : ""); break; case SA_IFINDEX: RESULT(sa.type, i, rta->nh.iface ? rta->nh.iface->index : 0); break; case SA_WEIGHT: RESULT(sa.type, i, rta->nh.weight + 1); break; - case SA_PREF: RESULT(sa.type, i, rta->pref); break; case SA_GW_MPLS: RESULT(sa.type, i, rta->nh.labels ? rta->nh.label[0] : MPLS_NULL); break; default: @@ -648,10 +647,6 @@ } break; - case SA_PREF: - rta->pref = v1.val.i; - break; - default: bug("Invalid static attribute access (%u/%u)", sa.type, sa.sa_code); } |