diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-08-09 00:05:02 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-08-09 00:20:14 +0200 |
commit | eada8925776aafa3ec47d66fb89bf7eae730edf7 (patch) | |
tree | c684e89becee0e065d168274dfabf7b7bbd25da6 /package/network/utils/nftables/Makefile | |
parent | 737671bcceb438195ad8fe78b6f93e5ccfef8483 (diff) | |
download | upstream-eada8925776aafa3ec47d66fb89bf7eae730edf7.tar.gz upstream-eada8925776aafa3ec47d66fb89bf7eae730edf7.tar.bz2 upstream-eada8925776aafa3ec47d66fb89bf7eae730edf7.zip |
nftables: fix parsing date expressions
Musl libc does not support the non-POSIX "%F" format for strptime() so
replace all occurrences of it with an equivalent "%Y-%m-%d" format.
Fixes: #10419
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package/network/utils/nftables/Makefile')
-rw-r--r-- | package/network/utils/nftables/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/nftables/Makefile b/package/network/utils/nftables/Makefile index 88d7aebefc..850355df8d 100644 --- a/package/network/utils/nftables/Makefile +++ b/package/network/utils/nftables/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nftables PKG_VERSION:=1.0.4 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://netfilter.org/projects/$(PKG_NAME)/files |