summaryrefslogtreecommitdiff
path: root/src/trust.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/trust.c')
-rw-r--r--src/trust.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trust.c b/src/trust.c
index 6f0f885..5e2a956 100644
--- a/src/trust.c
+++ b/src/trust.c
@@ -13,7 +13,7 @@ static struct apk_trust_key *apk_trust_load_key(int dirfd, const char *filename)
r = apk_pkey_load(&key->key, dirfd, filename);
if (r) {
free(key);
- return ERR_PTR(-ENOKEY);
+ return ERR_PTR(r);
}
list_init(&key->key_node);