diff options
Diffstat (limited to 'src/database.c')
-rw-r--r-- | src/database.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/database.c b/src/database.c index 0c62b4d..dd3f4b5 100644 --- a/src/database.c +++ b/src/database.c @@ -1135,7 +1135,7 @@ int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts) struct apk_bstream *bs; struct statfs stfs; apk_blob_t blob; - int r, fd, rr = 0; + int i, r, fd, rr = 0; memset(db, 0, sizeof(*db)); if (apk_flags & APK_SIMULATE) { @@ -1312,6 +1312,14 @@ int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts) goto ret_r; } + for (i = 0; i < db->num_repo_tags; i++) { + if (!db->repo_tags[i].allowed_repos) { + apk_warning("Repository tag '" BLOB_FMT "' used in world is no longer available", + BLOB_PRINTF(*db->repo_tags[i].name)); + db->missing_tags = 1; + } + } + if (db->compat_newfeatures) { apk_warning("This apk-tools is OLD! Some packages %s.", db->compat_notinstallable ? |