From: Harald Welte Date: Wed, 29 May 2002 12:43:34 +0000 (+0000) Subject: fix help message printout X-Git-Tag: v1.2.7~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1c8fa733e6092029d97bc5b2b6a4cb13b513f2f0;p=thirdparty%2Fiptables.git fix help message printout --- diff --git a/extensions/libipt_ECN.c b/extensions/libipt_ECN.c index c7ee7710..ddab35c3 100644 --- a/extensions/libipt_ECN.c +++ b/extensions/libipt_ECN.c @@ -24,13 +24,13 @@ static void init(struct ipt_entry_target *t, unsigned int *nfcache) static void help(void) { printf( -"ECN target options\n" -" --ecn-tcp-remove Remove all ECN bits which may be present\n" -" in the IPv4 header\n" -"ECN target EXPERIMENTAL options (use with extreme care!)\n" +"ECN target v%s options\n" +" --ecn-tcp-remove Remove all ECN bits from TCP header\n" +"ECN target v%s EXPERIMENTAL options (use with extreme care!)\n" " --ecn-ip-ect Set the IPv4 ECT codepoint (0 to 3)\n" " --ecn-tcp-cwr Set the IPv4 CWR bit (0 or 1)\n" -" --ecn-tcp-ece Set the IPv4 CWR bit (0 or 1)\n" +" --ecn-tcp-ece Set the IPv4 CWR bit (0 or 1)\n", + NETFILTER_VERSION, NETFILTER_VERSION ); }