summaryrefslogtreecommitdiff
path: root/app-admin/logrotate/files/logrotate-3.15.0-ignore-hidden.patch
blob: cb2fc073bc61d0c4e51c4c03837d8c92cf98c8fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff -Nuar a/config.c b/config.c
--- a/config.c	2018-10-05 17:01:21.000000000 +0200
+++ b/config.c	2018-12-19 16:33:52.280129804 +0100
@@ -417,7 +417,9 @@
     int i;
 
     /* 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 */