summaryrefslogtreecommitdiff
blob: a3779aa8e5cc0c10eb64eda982ad5e8d1e7e14fc (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	2013-07-31 13:46:23.000000000 +0200
+++ b/config.c	2013-08-13 12:43:57.679943616 +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 */