diff options
| author | Michael Biebl <biebl@debian.org> | 2025-01-20 19:08:11 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2025-01-20 19:08:11 +0100 |
| commit | 416fc97fcaaa53527b8436877d3e51570d02f179 (patch) | |
| tree | c13e5f554373ab6a83195dcd6d13d26093fbdece /src/libnm-platform/nm-linux-platform.c | |
| parent | cc7b45e4264b08ae6255761df3c9ed45d5c7b5a2 (diff) | |
| parent | 818258cf34b83fbc754633295e1052d4752d7b15 (diff) | |
Update upstream source from tag 'upstream/1.50.2'
Update to upstream version '1.50.2' with Debian dir 87bbef1213fa05667234e5fa151223961e65a167
Diffstat (limited to 'src/libnm-platform/nm-linux-platform.c')
| -rw-r--r-- | src/libnm-platform/nm-linux-platform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libnm-platform/nm-linux-platform.c b/src/libnm-platform/nm-linux-platform.c index 90a34102..f348e27c 100644 --- a/src/libnm-platform/nm-linux-platform.c +++ b/src/libnm-platform/nm-linux-platform.c @@ -5424,7 +5424,7 @@ _nl_msg_new_link_set_linkinfo_vlan(struct nl_msg *msg, if (!(qos = nla_nest_start(msg, IFLA_VLAN_INGRESS_QOS))) goto nla_put_failure; } - NLA_PUT(msg, i, sizeof(ingress_qos[i]), &ingress_qos[i]); + NLA_PUT(msg, IFLA_VLAN_QOS_MAPPING, sizeof(ingress_qos[i]), &ingress_qos[i]); } } @@ -5441,7 +5441,7 @@ _nl_msg_new_link_set_linkinfo_vlan(struct nl_msg *msg, if (!(qos = nla_nest_start(msg, IFLA_VLAN_EGRESS_QOS))) goto nla_put_failure; } - NLA_PUT(msg, i, sizeof(egress_qos[i]), &egress_qos[i]); + NLA_PUT(msg, IFLA_VLAN_QOS_MAPPING, sizeof(egress_qos[i]), &egress_qos[i]); } } |