Fix a white space.

This commit is contained in:
Jung-uk Kim 2020-02-27 20:46:30 +00:00
parent dc30b290e1
commit 3ab9782ad3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=358410

View File

@ -744,7 +744,7 @@ sm_RSA_generate_key(num, e)
unsigned long e;
{
RSA *rsa = NULL;
BIGNUM *bn_rsa_r4;
BIGNUM *bn_rsa_r4;
bn_rsa_r4 = BN_new();
if ((bn_rsa_r4 != NULL) && BN_set_word(bn_rsa_r4, e) && (rsa = RSA_new()) != NULL)