You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
4 years ago
|
From 21ef09de8df5a448df06a3fb6c7708440fe8b8ac Mon Sep 17 00:00:00 2001
|
||
|
From: Phil Sutter <psutter@redhat.com>
|
||
|
Date: Wed, 3 Apr 2019 20:19:53 +0200
|
||
|
Subject: [PATCH] extensions: Fix ipvs vproto option printing
|
||
|
|
||
|
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1679726
|
||
|
Upstream Status: iptables commit dd1ad59f0df66
|
||
|
|
||
|
commit dd1ad59f0df66811335c10ed90c33151a658a50e
|
||
|
Author: Phil Sutter <phil@nwl.cc>
|
||
|
Date: Thu Feb 21 20:09:31 2019 +0100
|
||
|
|
||
|
extensions: Fix ipvs vproto option printing
|
||
|
|
||
|
This was broken since day 1: vproto option was printed as 'proto' which
|
||
|
in turn iptables wouldn't accept anymore.
|
||
|
|
||
|
Fixes: c36d05e424069 ("libxt_ipvs: user-space lib for netfilter matcher xt_ipvs")
|
||
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||
|
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||
|
|
||
|
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||
|
---
|
||
|
extensions/libxt_ipvs.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/extensions/libxt_ipvs.c b/extensions/libxt_ipvs.c
|
||
|
index fe98fef951686..51952be4245b3 100644
|
||
|
--- a/extensions/libxt_ipvs.c
|
||
|
+++ b/extensions/libxt_ipvs.c
|
||
|
@@ -165,7 +165,7 @@ static void ipvs_mt_dump(const void *ip, const struct xt_ipvs_mtinfo *data,
|
||
|
if (data->bitmask & XT_IPVS_PROTO) {
|
||
|
if (data->invert & XT_IPVS_PROTO)
|
||
|
printf(" !");
|
||
|
- printf(" %sproto %u", prefix, data->l4proto);
|
||
|
+ printf(" %svproto %u", prefix, data->l4proto);
|
||
|
}
|
||
|
|
||
|
if (data->bitmask & XT_IPVS_VADDR) {
|
||
|
--
|
||
|
2.21.0
|
||
|
|