diff options
author | Michael Vogt <mvo@debian.org> | 2014-01-05 10:06:26 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-01-05 10:06:26 +0100 |
commit | 77002164d1339af01d74339766c51581784bebf1 (patch) | |
tree | 8bfc03027635aaffba989c7a80f7715b7d3e397d /apt-pkg/contrib/fileutl.cc | |
parent | 74d4bb26e09146b9d5f01889a676dc58ff5d63cd (diff) | |
parent | 47d2bc78adb49f3182f9a3d7a4baea363e772d64 (diff) |
Merge remote-tracking branch 'donkult/feature/clientmergepdiffs' into debian/experimental-no-abi-break
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index efbf7aaf4..ffb8b4b53 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -465,7 +465,7 @@ std::vector<string> GetListOfFilesInDir(string const &Dir, std::vector<string> c const char *C = Ent->d_name; for (; *C != 0; ++C) if (isalpha(*C) == 0 && isdigit(*C) == 0 - && *C != '_' && *C != '-') { + && *C != '_' && *C != '-' && *C != ':') { // no required extension -> dot is a bad character if (*C == '.' && Ext.empty() == false) continue; |