diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2019-11-29 15:47:48 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2019-11-29 15:48:10 -0500 |
commit | f6d0308c27d9ee57792810823d3ba55ed548ceae (patch) | |
tree | f57784fe866e934bb9460db1548382e32987f601 /net-dns/rbldnsd/files | |
parent | sys-kernel/vanilla-sources: Version bump to 5.4.1 (diff) | |
download | gentoo-f6d0308c27d9ee57792810823d3ba55ed548ceae.tar.gz gentoo-f6d0308c27d9ee57792810823d3ba55ed548ceae.tar.bz2 gentoo-f6d0308c27d9ee57792810823d3ba55ed548ceae.zip |
net-dns/rbldnsd: remove "unused" rbldnsd-0.998.ebuild and patch.
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'net-dns/rbldnsd/files')
-rw-r--r-- | net-dns/rbldnsd/files/rbldnsd-0.997a-format-security-compile-fix.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/net-dns/rbldnsd/files/rbldnsd-0.997a-format-security-compile-fix.patch b/net-dns/rbldnsd/files/rbldnsd-0.997a-format-security-compile-fix.patch deleted file mode 100644 index 03da010336e3..000000000000 --- a/net-dns/rbldnsd/files/rbldnsd-0.997a-format-security-compile-fix.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 5d3455065f84fe1ef4673552a27d2e6e8f02c97a Mon Sep 17 00:00:00 2001 -From: Michael Orlitzky <michael@orlitzky.com> -Date: Mon, 22 Sep 2014 10:09:27 -0400 -Subject: [PATCH 1/1] Fix compilation with -Werror=format-security. - -The dslog() function takes an optional format string, analogous to -e.g. printf(), and a list of arguments to be substituted into the -format string. A call to dslog() in do_reload() omitted the format -string causing GCC to throw a format-security warning. To silence the -warning, a trivial format string of "%s" was provided. ---- - rbldnsd.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/rbldnsd.c b/rbldnsd.c -index abf1d01..e791231 100644 ---- a/rbldnsd.c -+++ b/rbldnsd.c -@@ -959,7 +959,7 @@ static int do_reload(int do_fork) { - # undef kb - } - #endif /* NO_MEMINFO */ -- dslog(LOG_INFO, 0, ibuf); -+ dslog(LOG_INFO, 0, "%s", ibuf); - - check_expires(); - --- -1.8.5.5 - |