From: Nicolas Dichtel Date: Wed, 14 Nov 2012 15:29:24 +0000 (+0100) Subject: ip/ip6tunnel: fix help for TCLASS X-Git-Tag: v3.7.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0c8420c09de37b91fa50b0772d3d3359d828d23;p=thirdparty%2Fiproute2.git ip/ip6tunnel: fix help for TCLASS Help is "[tclass TCLASS]", but only TOS was described. Signed-off-by: Nicolas Dichtel --- diff --git a/ip/ip6tunnel.c b/ip/ip6tunnel.c index c9720eb25..b23377a67 100644 --- a/ip/ip6tunnel.c +++ b/ip/ip6tunnel.c @@ -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); }