]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - tc/f_flow.c
tc: Remove pointless assignments in batch()
[mirror_iproute2.git] / tc / f_flow.c
index b15710497d1244fe3cac97d8bc282c28f07d0132..badeaa2907285db2ad55c7e8639ec06b304cc124 100644 (file)
@@ -147,8 +147,7 @@ static int flow_parse_opt(struct filter_util *fu, char *handle,
                }
        }
 
-       tail = NLMSG_TAIL(n);
-       addattr_l(n, 4096, TCA_OPTIONS, NULL, 0);
+       tail = addattr_nest(n, 4096, TCA_OPTIONS);
 
        while (argc > 0) {
                if (matches(*argv, "map") == 0) {
@@ -259,7 +258,7 @@ static int flow_parse_opt(struct filter_util *fu, char *handle,
                addattr32(n, 4096, TCA_FLOW_XOR, xor);
        }
 
-       tail->rta_len = (void *)NLMSG_TAIL(n) - (void *)tail;
+       addattr_nest_end(n, tail);
        return 0;
 }