summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libalpm/be_sync.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c
index 5faf0b8d..6c0d2d67 100644
--- a/lib/libalpm/be_sync.c
+++ b/lib/libalpm/be_sync.c
@@ -432,9 +432,11 @@ static int sync_db_read(pmdb_t *db, struct archive *archive,
READ_AND_STORE_ALL(pkg->deltas);
}
}
+ } else if(strcmp(filename, "files") == 0) {
+ /* currently do nothing with this file */
} else {
- /* unknown database file */
- _alpm_log(PM_LOG_DEBUG, "unknown database file: %s", filename);
+ /* unknown database file */
+ _alpm_log(PM_LOG_DEBUG, "unknown database file: %s\n", filename);
}
error: