]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - tc/p_ip.c
tc: Remove pointless assignments in batch()
[mirror_iproute2.git] / tc / p_ip.c
index 22fe6505e427100f8a238e1e57e6d97444d0908d..e9fd6f834efcdd92f66cf47f2de60239eeafde2a 100644 (file)
--- a/tc/p_ip.c
+++ b/tc/p_ip.c
@@ -1,5 +1,5 @@
 /*
- * m_pedit.c           packet editor: IPV4/6 header
+ * p_ip.c              packet editor: IPV4 header
  *
  *             This program is free software; you can distribute it and/or
  *             modify it under the terms of the GNU General Public License
@@ -13,7 +13,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
-#include <syslog.h>
 #include <fcntl.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
@@ -52,7 +51,7 @@ parse_ip(int *argc_p, char ***argv_p,
        }
        /* jamal - look at these and make them either old or new
        ** scheme given diffserv
-       ** dont forget the CE bit
+       ** don't forget the CE bit
        */
        if (strcmp(*argv, "tos") == 0 || matches(*argv, "dsfield") == 0) {
                NEXT_ARG();
@@ -156,23 +155,8 @@ done:
        return res;
 }
 
-static int
-parse_ip6(int *argc_p, char ***argv_p,
-         struct m_pedit_sel *sel, struct m_pedit_key *tkey)
-{
-       int res = -1;
-       return res;
-}
-
 struct m_pedit_util p_pedit_ip = {
        NULL,
        "ip",
        parse_ip,
 };
-
-
-struct m_pedit_util p_pedit_ip6 = {
-       NULL,
-       "ip6",
-       parse_ip6,
-};