From: Sergey Poznyakoff Date: Thu, 2 Oct 2003 10:41:48 +0000 (+0000) Subject: Take regexps into account X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=f364d50661977d5db6df03470e85999a88ec5981;p=chaz%2Ftar Take regexps into account --- diff --git a/src/names.c b/src/names.c index 41d3476..46581e0 100644 --- a/src/names.c +++ b/src/names.c @@ -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; }