Fix c++ comment in ec code.

This is a 9 month old change, so I am not sure why it is only causing a
compile issue now.

Reported by David Makepeace

Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/27186)
This commit is contained in:
slontis 2025-03-28 18:57:48 +11:00 committed by Tomas Mraz
parent 908e0f3728
commit ea77608920

View File

@ -1522,7 +1522,7 @@ static int ecp_nistz256group_full_init(EC_GROUP *group,
goto err;
}
if ((order = BN_bin2bn(params + 5 * param_len, param_len, NULL)) == NULL
|| !BN_set_word(x, (BN_ULONG)1)) { // cofactor is 1
|| !BN_set_word(x, (BN_ULONG)1)) { /* cofactor is 1 */
ERR_raise(ERR_LIB_EC, ERR_R_BN_LIB);
goto err;
}