diff options
Diffstat (limited to 'main/apk-tools/0006-db-make-missing-index-non-fatal.patch')
-rw-r--r-- | main/apk-tools/0006-db-make-missing-index-non-fatal.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/main/apk-tools/0006-db-make-missing-index-non-fatal.patch b/main/apk-tools/0006-db-make-missing-index-non-fatal.patch new file mode 100644 index 0000000000..cfc5dd5714 --- /dev/null +++ b/main/apk-tools/0006-db-make-missing-index-non-fatal.patch @@ -0,0 +1,29 @@ +From fac43e2d60b550425481052e521d141730a303de Mon Sep 17 00:00:00 2001 +From: Timo Teras <timo.teras@iki.fi> +Date: Thu, 6 Aug 2009 13:12:26 +0300 +Subject: [PATCH 6/7] db: make missing index non-fatal + +it's a warning not an error to have non-existant repository. +bad signature means tampering; but we might want to just ignore +those. this is especially important if we have http repositories +and we are bootstrapping (without network). +--- + src/database.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/src/database.c b/src/database.c +index 834383b..f7c3ac0 100644 +--- a/src/database.c ++++ b/src/database.c +@@ -1282,7 +1282,7 @@ int apk_db_add_repository(apk_database_t _db, apk_blob_t repository) + } + if (bs == NULL) { + apk_warning("Failed to open index for %s", repo->url); +- return -1; ++ return 0; + } + + r = load_index(db, bs, targz, r); +-- +1.6.4 + |