aboutsummaryrefslogtreecommitdiff
path: root/libbutl/filesystem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/filesystem.cxx')
-rw-r--r--libbutl/filesystem.cxx20
1 files changed, 6 insertions, 14 deletions
diff --git a/libbutl/filesystem.cxx b/libbutl/filesystem.cxx
index 1ea4cf8..0e1cda5 100644
--- a/libbutl/filesystem.cxx
+++ b/libbutl/filesystem.cxx
@@ -2126,21 +2126,13 @@ namespace butl
auto match = [&entry, &r] (path&& p, const std::string&, bool interim)
{
- if (p == entry)
+ // If we found the entry (possibly through one of the recursive
+ // components) no need to search further.
+ //
+ if (p == entry && !interim)
{
- // If we found the entry (possibly through one of the recursive
- // components) no need to search further.
- //
- if (!interim)
- {
- r = true;
- return false;
- }
- else
- // For self-matching the callback is first called in the interim
- // mode (through the preopen function) with an empty path.
- //
- assert (p.empty ());
+ r = true;
+ return false;
}
return true;