From 8c4d3255762d770dbbedb65c5c09846ddf3b339a Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Fri, 27 Mar 2020 11:08:50 +0100 Subject: [PATCH] framework-pkcs15: Fix typo in comment --- src/pkcs11/framework-pkcs15.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkcs11/framework-pkcs15.c b/src/pkcs11/framework-pkcs15.c index 8d29d454..ca911bff 100644 --- a/src/pkcs11/framework-pkcs15.c +++ b/src/pkcs11/framework-pkcs15.c @@ -1521,7 +1521,7 @@ _add_public_objects(struct sc_pkcs11_slot *slot, struct pkcs15_fw_data *fw_data) /* PKCS#15 4.1.3 is a little vague, but implies if not PRIVATE it is readable * even if there is an auth_id to allow writing for example. * See bug issue #291 - * treat pubkey and cert as readable.a + * treat pubkey and cert as readable. */ if (obj->p15_object->auth_id.len && !(is_pubkey(obj) || is_cert(obj))) continue;