Code style: space after 'if'

Reviewed-by: Matt Caswell <gitlab@openssl.org>
This commit is contained in:
Viktor Dukhovni
2015-04-16 02:51:52 -04:00
parent e963109fcd
commit c70908d247
37 changed files with 90 additions and 90 deletions

View File

@@ -454,7 +454,7 @@ int SRP_Calc_A_param(SSL *s)
{
unsigned char rnd[SSL_MAX_MASTER_KEY_LENGTH];
if(RAND_bytes(rnd, sizeof(rnd)) <= 0)
if (RAND_bytes(rnd, sizeof(rnd)) <= 0)
return -1;
s->srp_ctx.a = BN_bin2bn(rnd, sizeof(rnd), s->srp_ctx.a);
OPENSSL_cleanse(rnd, sizeof(rnd));