diff options
Diffstat (limited to 'app-admin/logrotate/files/logrotate-3.8.4-ignore-hidden.patch')
-rw-r--r-- | app-admin/logrotate/files/logrotate-3.8.4-ignore-hidden.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/app-admin/logrotate/files/logrotate-3.8.4-ignore-hidden.patch b/app-admin/logrotate/files/logrotate-3.8.4-ignore-hidden.patch deleted file mode 100644 index a76937fd8bfb..000000000000 --- a/app-admin/logrotate/files/logrotate-3.8.4-ignore-hidden.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -Nur a/config.c b/config.c ---- a/config.c 2013-04-30 10:29:31.000000000 +0200 -+++ b/config.c 2013-05-10 21:03:29.309904119 +0200 -@@ -255,7 +255,9 @@ - char *pattern; - - /* Check if fname is '.' or '..'; if so, return false */ -- if (fname[0] == '.' && (!fname[1] || (fname[1] == '.' && !fname[2]))) -+ /* Don't include 'hidden' files either; this breaks Gentoo -+ portage config file management http://bugs.gentoo.org/87683 */ -+ if (fname[0] == '.') - return 0; - - /* Check if fname is ending in a taboo-extension; if so, return false */ |