From: Mart Frauenlob Date: Mon, 27 Nov 2017 15:18:43 +0000 (+0100) Subject: iptables: extensions: Fix MARK target help X-Git-Tag: v1.6.2~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a6d6821a6c0fae85a4d1570701b3b6bee89ec0a2;p=thirdparty%2Fiptables.git iptables: extensions: Fix MARK target help A typo in the help output of: iptables -j MARK -h. Signed-off-by: Mart Frauenlob Signed-off-by: Florian Westphal --- diff --git a/extensions/libxt_MARK.c b/extensions/libxt_MARK.c index c2f15e3b..12b1695e 100644 --- a/extensions/libxt_MARK.c +++ b/extensions/libxt_MARK.c @@ -76,7 +76,7 @@ static void mark_tg_help(void) " --set-mark value[/mask] Clear bits in mask and OR value into nfmark\n" " --and-mark bits Binary AND the nfmark with bits\n" " --or-mark bits Binary OR the nfmark with bits\n" -" --xor-mask bits Binary XOR the nfmark with bits\n" +" --xor-mark bits Binary XOR the nfmark with bits\n" "\n"); }