diff options
author | Florian Eckert <fe@dev.tdt.de> | 2022-02-25 12:30:08 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-03-01 21:17:30 +0100 |
commit | ba6a48366f4ae4b7b47a11f95141554c52a2a5db (patch) | |
tree | 7426b4af6b4a69f07efdf312232adf1d05d7b3e9 /package/network/utils/ipset/patches | |
parent | 495c4f4e197166a6fa997d4620ca6c241e3abd45 (diff) | |
download | upstream-ba6a48366f4ae4b7b47a11f95141554c52a2a5db.tar.gz upstream-ba6a48366f4ae4b7b47a11f95141554c52a2a5db.tar.bz2 upstream-ba6a48366f4ae4b7b47a11f95141554c52a2a5db.zip |
ipset: update to 7.15
Update to the latest upstream version. In this version there is a new
tool with which you can convert ipsets into nftables sets. Since we are
now using nftables as default firewall, this could be a useful tool for
porting ipsets to nftables sets.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'package/network/utils/ipset/patches')
-rw-r--r-- | package/network/utils/ipset/patches/0001-lib-ipset-fix-printf-warning.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/network/utils/ipset/patches/0001-lib-ipset-fix-printf-warning.patch b/package/network/utils/ipset/patches/0001-lib-ipset-fix-printf-warning.patch new file mode 100644 index 0000000000..90dfacab8f --- /dev/null +++ b/package/network/utils/ipset/patches/0001-lib-ipset-fix-printf-warning.patch @@ -0,0 +1,11 @@ +--- a/lib/ipset.c ++++ b/lib/ipset.c +@@ -1847,7 +1847,7 @@ static int ipset_xlate(struct ipset *ips + return -1; + case IPSET_CMD_LIST: + if (!set) { +- printf("list sets %s\n", ++ printf("list sets %s %s\n", + ipset_xlate_family(family), table); + } else { + printf("list set %s %s %s\n", |