From 06c588e535aaad07cfbaa2bd484b8b624ec9590a Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Thu, 15 Sep 2016 19:25:50 +0000 Subject: [PATCH] OpenSSL: Apply consistent coding style [ci skip] --- libratbox/src/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libratbox/src/openssl.c b/libratbox/src/openssl.c index 18e45469..e5a0f584 100644 --- a/libratbox/src/openssl.c +++ b/libratbox/src/openssl.c @@ -360,7 +360,7 @@ rb_setup_ssl_server(const char *const certfile, const char *keyfile, } } - if (SSL_CTX_set_cipher_list(ssl_ctx_new, cipherlist) != 1) + if(SSL_CTX_set_cipher_list(ssl_ctx_new, cipherlist) != 1) { rb_lib_log("%s: SSL_CTX_set_cipher_list: could not configure any ciphers", __func__); SSL_CTX_free(ssl_ctx_new);