From: Jan Engelhardt Date: Tue, 31 May 2011 22:52:07 +0000 (+0200) Subject: iproute2: fix calling up the xt action X-Git-Tag: v3.2.0~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e91a80d975d4086178158214d35af793695b614;p=thirdparty%2Fiproute2.git 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. --- diff --git a/tc/m_xt.c b/tc/m_xt.c index 18666b3eb..8f2a29595 100644 --- a/tc/m_xt.c +++ b/tc/m_xt.c @@ -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, };