network: replace FRA_IFNAME -> FRA_IIFNAME

No functional change, as FRA_IFNAME is an alias of FRA_IIFNAME.
This commit is contained in:
Yu Watanabe 2020-09-09 05:05:08 +09:00
parent 2102d33cfb
commit 17d2b2e4ef
1 changed files with 2 additions and 2 deletions

View File

@ -547,9 +547,9 @@ int routing_policy_rule_configure(RoutingPolicyRule *rule, Link *link, link_netl
}
if (rule->iif) {
r = sd_netlink_message_append_string(m, FRA_IFNAME, rule->iif);
r = sd_netlink_message_append_string(m, FRA_IIFNAME, rule->iif);
if (r < 0)
return log_link_error_errno(link, r, "Could not append FRA_IFNAME attribute: %m");
return log_link_error_errno(link, r, "Could not append FRA_IIFNAME attribute: %m");
}
if (rule->oif) {