diff options
Diffstat (limited to 'src/app_index.c')
-rw-r--r-- | src/app_index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app_index.c b/src/app_index.c index 896474b..5881e56 100644 --- a/src/app_index.c +++ b/src/app_index.c @@ -186,7 +186,7 @@ static int index_main(void *ctx, struct apk_ctx *ac, struct apk_string_array *ar if (!found) { struct apk_sign_ctx sctx; - apk_sign_ctx_init(&sctx, ictx->method, NULL, db->keys_fd, db->ctx->flags & APK_ALLOW_UNTRUSTED); + apk_sign_ctx_init(&sctx, ictx->method, NULL, apk_ctx_get_trust(ac)); r = apk_pkg_read(db, *parg, &sctx, &pkg); if (r < 0) { apk_err(out, "%s: %s", *parg, apk_error_str(r)); |