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)
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;
}