diff options
Diffstat (limited to 'src/database.c')
-rw-r--r-- | src/database.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/database.c b/src/database.c index 8619465..0828725 100644 --- a/src/database.c +++ b/src/database.c @@ -2017,8 +2017,10 @@ static int apk_repository_update(struct apk_database *db, struct apk_repository int r, verify = (apk_flags & APK_ALLOW_UNTRUSTED) ? APK_SIGN_NONE : APK_SIGN_VERIFY; r = apk_cache_download(db, repo, NULL, verify, NULL, NULL); - if (r != 0) + if (r != 0) { apk_error("%s: %s", repo->url, apk_error_str(r)); + db->repo_update_errors++; + } return r; } |