aboutsummaryrefslogtreecommitdiffstats
path: root/src/database.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/database.c')
-rw-r--r--src/database.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/database.c b/src/database.c
index c814957f57..478016bb8a 100644
--- a/src/database.c
+++ b/src/database.c
@@ -758,6 +758,8 @@ int apk_db_index_read(struct apk_database *db, struct apk_bstream *bs, int repo)
if (pkg == NULL)
continue;
+ if (diri) apk_db_dir_apply_diri_permissions(diri);
+
if (repo >= 0) {
pkg->repos |= BIT(repo);
} else if (repo == -2) {
@@ -806,6 +808,7 @@ int apk_db_index_read(struct apk_database *db, struct apk_bstream *bs, int repo)
/* Check FDB special entries */
switch (field) {
case 'F':
+ if (diri) apk_db_dir_apply_diri_permissions(diri);
if (pkg->name == NULL) goto bad_entry;
diri = apk_db_diri_new(db, pkg, l, &diri_node);
file_diri_node = &diri->owned_files.first;
@@ -826,7 +829,7 @@ int apk_db_index_read(struct apk_database *db, struct apk_bstream *bs, int repo)
acl = apk_db_acl_atomize(mode, uid, gid, &xattr_csum);
if (field == 'M')
- apk_db_diri_set(diri, acl);
+ diri->acl = acl;
else
file->acl = acl;
break;