diff mbox series

iptables: extensions: Fix MARK target help

Message ID 2dc68ff2-6492-a28b-e85d-94f8e1ba0dc9@chello.at
State Accepted
Headers show
Series iptables: extensions: Fix MARK target help | expand

Commit Message

Mart Frauenlob Nov. 27, 2017, 3:18 p.m. UTC
A typo in the help output of: iptables -j MARK -h.
From bf3f7fff81faf5dc14fcb7d516fcc47bd406f498 Mon Sep 17 00:00:00 2001
From: Mart Frauenlob <mart.frauenlob@chello.at>
Date: Mon, 27 Nov 2017 15:49:58 +0100
Subject: [PATCH] iptables: extensions: Fix MARK target help.

Signed-off-by: Mart Frauenlob <mart.frauenlob@chello.at>
---
 extensions/libxt_MARK.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Florian Westphal Nov. 27, 2017, 3:25 p.m. UTC | #1
Mart Frauenlob <mart.frauenlob@chello.at> wrote:
> A typo in the help output of: iptables -j MARK -h.

applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/extensions/libxt_MARK.c b/extensions/libxt_MARK.c
index c2f15e3..12b1695 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");
 }