about summary refs log tree commit diff
path: root/Src/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/utils.c')
-rw-r--r--Src/utils.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/Src/utils.c b/Src/utils.c
index 180693d67..cb292a050 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -2775,10 +2775,11 @@ checkrmall(char *s)
     const int max_count = 100;
     if ((rmd = opendir(unmeta(s)))) {
 	int ignoredots = !isset(GLOBDOTS);
-	/* ### TODO: Passing ignoredots here is wrong.  See workers/41672
-	   aka <https://bugs.debian.org/875460>.
-	 */
-	while (zreaddir(rmd, ignoredots)) {
+	char *fname;
+
+	while (fname = zreaddir(rmd, 1)) {
+	    if (ignoredots && *fname == '.')
+		continue;
 	    count++;
 	    if (count > max_count)
 		break;