Commit 8e91a80d authored by Jan Engelhardt's avatar Jan Engelhardt Committed by Stephen Hemminger

iproute2: fix calling up the xt action

Upsteam: has not been sent yet

Requesting the xt action never succeeded because it registered
using the wrong name.
parent d7aa57d4
...@@ -350,8 +350,8 @@ print_ipt(struct action_util *au,FILE * f, struct rtattr *arg) ...@@ -350,8 +350,8 @@ print_ipt(struct action_util *au,FILE * f, struct rtattr *arg)
return 0; return 0;
} }
struct action_util ipt_action_util = { struct action_util xt_action_util = {
.id = "ipt", .id = "xt",
.parse_aopt = parse_ipt, .parse_aopt = parse_ipt,
.print_aopt = print_ipt, .print_aopt = print_ipt,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment