aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/database.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/database.c b/src/database.c
index 4d16900..7c3c646 100644
--- a/src/database.c
+++ b/src/database.c
@@ -2652,8 +2652,12 @@ static void apk_db_migrate_files(struct apk_database *db,
unlinkat(db->root_fd, tmpname, 0);
} else {
/* Overwrite the old file */
- renameat(db->root_fd, tmpname,
- db->root_fd, name);
+ if (renameat(db->root_fd, tmpname,
+ db->root_fd, name) != 0) {
+ apk_error(PKG_VER_FMT": failed to rename %s to %s.",
+ PKG_VER_PRINTF(ipkg->pkg), tmpname, name);
+ ipkg->broken_files = 1;
+ }
}
/* Claim ownership of the file in db */