30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 1f7fa039057778f229c5190d816551bf75955d5a Mon Sep 17 00:00:00 2001
|
|
From: Phil Sutter <phil@nwl.cc>
|
|
Date: Thu, 5 May 2022 18:00:14 +0200
|
|
Subject: [PATCH] extensions: MARK: Drop extra newline at end of help
|
|
|
|
Fixes: f4b737fb0c52a ("libxt_MARK r2")
|
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
|
(cherry picked from commit adbfec0b3e3275ea5e7c933b630756cf01a4f8c6)
|
|
---
|
|
extensions/libxt_MARK.c | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/extensions/libxt_MARK.c b/extensions/libxt_MARK.c
|
|
index b765af6c35304..1536563d0f4c7 100644
|
|
--- a/extensions/libxt_MARK.c
|
|
+++ b/extensions/libxt_MARK.c
|
|
@@ -77,8 +77,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-mark bits Binary XOR the nfmark with bits\n"
|
|
-"\n");
|
|
+" --xor-mark bits Binary XOR the nfmark with bits\n");
|
|
}
|
|
|
|
static void MARK_parse_v0(struct xt_option_call *cb)
|
|
--
|
|
2.40.0
|
|
|