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

@@ -2729,7 +2729,7 @@ int ssl3_send_client_key_exchange(SSL *s)
EVP_PKEY_encrypt_init(pkey_ctx);
/* Generate session key */
if(RAND_bytes(premaster_secret, 32) <= 0) {
if (RAND_bytes(premaster_secret, 32) <= 0) {
EVP_PKEY_CTX_free(pkey_ctx);
goto err;
}