]> Dogcows Code - chaz/tar/commitdiff
Take regexps into account
authorSergey Poznyakoff <gray@gnu.org.ua>
Thu, 2 Oct 2003 10:41:48 +0000 (10:41 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Thu, 2 Oct 2003 10:41:48 +0000 (10:41 +0000)
src/names.c

index 41d3476ec6cb05428c5e719e4edfe9155cbd5638..46581e0738f5228ed542a8af4ee29e983766f44e 100644 (file)
@@ -601,7 +601,7 @@ names_done ()
 {
   struct name const *cursor;
   for (cursor = namelist; cursor; cursor = cursor->next)
-    if (!cursor->found && !cursor->fake)
+    if (cursor->regexp || (!cursor->found && !cursor->fake))
       return false;
   return true;
 }
This page took 0.023301 seconds and 4 git commands to generate.