diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-08-28 17:34:06 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-08-28 17:34:06 +0200 |
commit | 5edc3966e2e1eb4e94b5bd64d59c3a3a78a76ab0 (patch) | |
tree | 635fbe307ad7014fd888983fd2f6d401541a31e0 /apt-pkg | |
parent | 35db2f353975cba35597592f468d20d9aed8619c (diff) |
* apt-pkg/contrib/fileutl.cc:
- apply SilentlyIgnore also on files without an extension
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 91aecee65..2b73d1424 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -309,7 +309,8 @@ std::vector<string> GetListOfFilesInDir(string const &Dir, std::vector<string> c { if (Debug == true) std::clog << "Bad file: " << Ent->d_name << " → no extension" << std::endl; - _error->Notice("Ignoring file '%s' in directory '%s' as it has no filename extension", Ent->d_name, Dir.c_str()); + if (SilentIgnore.Match(Ent->d_name) == false) + _error->Notice("Ignoring file '%s' in directory '%s' as it has no filename extension", Ent->d_name, Dir.c_str()); continue; } } |