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 18666b3..8f2a295 100644
--- a/tc/m_xt.c
+++ b/tc/m_xt.c
@@ -350,8 +350,8 @@
 	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,
 };