From 8e91a80d975d4086178158214d35af793695b614 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 1 Jun 2011 00:52:07 +0200 Subject: [PATCH] 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. --- tc/m_xt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tc/m_xt.c b/tc/m_xt.c index 18666b3..8f2a295 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, }; -- 2.39.2