]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
ip/ip6tunnel: fix help for TCLASS
authorNicolas Dichtel <nicolas.dichtel@6wind.com>
Wed, 14 Nov 2012 15:29:24 +0000 (16:29 +0100)
committerStephen Hemminger <shemminger@vyatta.com>
Fri, 16 Nov 2012 16:15:39 +0000 (08:15 -0800)
Help is "[tclass TCLASS]", but only TOS was described.

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
ip/ip6tunnel.c

index c9720eb25b62781e11c47af1f30b797d6d8b9cba..b23377a678157abb594664963b685831d11ef983 100644 (file)
@@ -60,7 +60,7 @@ static void usage(void)
                IPV6_DEFAULT_TNL_ENCAP_LIMIT);
        fprintf(stderr, "       TTL       := 0..255 (default=%d)\n",
                DEFAULT_TNL_HOP_LIMIT);
-       fprintf(stderr, "       TOS       := { 0x0..0xff | inherit }\n");
+       fprintf(stderr, "       TCLASS    := { 0x0..0xff | inherit }\n");
        fprintf(stderr, "       FLOWLABEL := { 0x0..0xfffff | inherit }\n");
        exit(-1);
 }