From 21435953e16cda318a82334ddbadb3b5c36d9ea7 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 15 Jan 2020 15:51:32 +0000 Subject: gentoo resync : 15.01.2020 --- .../distcc/files/distcc-3.3.2-noexist-crash.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 sys-devel/distcc/files/distcc-3.3.2-noexist-crash.patch (limited to 'sys-devel/distcc/files') diff --git a/sys-devel/distcc/files/distcc-3.3.2-noexist-crash.patch b/sys-devel/distcc/files/distcc-3.3.2-noexist-crash.patch deleted file mode 100644 index 7f378082d99e..000000000000 --- a/sys-devel/distcc/files/distcc-3.3.2-noexist-crash.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 24f73c5cd8f839bd520eb52e91d0d26e07689373 Mon Sep 17 00:00:00 2001 -From: Shawn Landden -Date: Wed, 29 Aug 2018 04:52:38 -0700 -Subject: [PATCH] fix #304 - ---- - src/daemon.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/daemon.c b/src/daemon.c -index 5765982..c8fee7c 100644 ---- a/src/daemon.c -+++ b/src/daemon.c -@@ -166,7 +166,7 @@ static void dcc_warn_masquerade_whitelist(void) { - rs_log_crit(LIBDIR "/distcc not found. %s", warn); - dcc_exit(EXIT_COMPILER_MISSING); - } -- if (!readdir(e) && !readdir(d)) { -+ if ((!e || !readdir(e)) && (!d || !readdir(d))) { - rs_log_crit(LIBDIR "/distcc empty. %s", warn); - dcc_exit(EXIT_COMPILER_MISSING); - } -- cgit v1.2.3