summaryrefslogtreecommitdiff
path: root/cmds/installd/CacheItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/installd/CacheItem.cpp')
-rw-r--r--cmds/installd/CacheItem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/installd/CacheItem.cpp b/cmds/installd/CacheItem.cpp
index 0349b0ff8c..17eb7ff0e1 100644
--- a/cmds/installd/CacheItem.cpp
+++ b/cmds/installd/CacheItem.cpp
@@ -38,12 +38,12 @@ CacheItem::CacheItem(FTSENT* p) {
mParent = static_cast<CacheItem*>(p->fts_parent->fts_pointer);
if (mParent) {
- atomic = mParent->atomic;
+ group = mParent->group;
tombstone = mParent->tombstone;
mName = p->fts_name;
mName.insert(0, "/");
} else {
- atomic = false;
+ group = false;
tombstone = false;
mName = p->fts_path;
}