From b3d267caac21dd0a7d7a8cfcc304b253df5e82f4 Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Sun, 13 Sep 2020 20:31:13 +0800 Subject: Address review comments Reviewed-by: Richard Levitte Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/12536) --- providers/common/der/der_sm2_key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'providers/common') diff --git a/providers/common/der/der_sm2_key.c b/providers/common/der/der_sm2_key.c index daf2072c9e..7167088099 100644 --- a/providers/common/der/der_sm2_key.c +++ b/providers/common/der/der_sm2_key.c @@ -16,7 +16,7 @@ int DER_w_algorithmIdentifier_SM2(WPACKET *pkt, int cont, EC_KEY *ec) { return DER_w_begin_sequence(pkt, cont) /* No parameters (yet?) */ - /* It seems SM2 identifier is the same to id_ecPublidKey */ + /* It seems SM2 identifier is the same as id_ecPublidKey */ && DER_w_precompiled(pkt, -1, der_oid_id_ecPublicKey, sizeof(der_oid_id_ecPublicKey)) && DER_w_end_sequence(pkt, cont); -- cgit v1.2.3