summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-06-01 00:52:07 +0200
committerStephen Hemminger <shemminger@vyatta.com>2012-01-03 15:07:38 -0800
commit8e91a80d975d4086178158214d35af793695b614 (patch)
treef0687e944d8f2ec3fe6c6584d4bc118c1704e093
parentd7aa57d450b2b651e9115d5d9ad6bf0f433798da (diff)
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.
-rw-r--r--tc/m_xt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tc/m_xt.c b/tc/m_xt.c
index 18666b3e..8f2a2959 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,
};