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.
This commit is contained in:
Jan Engelhardt 2011-06-01 00:52:07 +02:00 committed by Stephen Hemminger
parent d7aa57d450
commit 8e91a80d97
1 changed files with 2 additions and 2 deletions

View File

@ -350,8 +350,8 @@ print_ipt(struct action_util *au,FILE * f, struct rtattr *arg)
return 0;
}
struct action_util ipt_action_util = {
.id = "ipt",
struct action_util xt_action_util = {
.id = "xt",
.parse_aopt = parse_ipt,
.print_aopt = print_ipt,
};