summaryrefslogtreecommitdiffstats
path: root/ossl_ssl.c
diff options
context:
space:
mode:
authorMichal Rokos <m.rokos@sh.cvut.cz>2003-07-22 06:33:10 +0000
committerMichal Rokos <m.rokos@sh.cvut.cz>2003-07-22 06:33:10 +0000
commitb53eabaa25a881555ce29ca330d395a34de8423a (patch)
treebec41251cbdd5faccae6b06a5d9700534a76f92a /ossl_ssl.c
parentfae0e4b53284c37cf7df228cd2bbeac362a51abf (diff)
downloadruby-openssl-history-b53eabaa25a881555ce29ca330d395a34de8423a.tar.gz
Indents
Diffstat (limited to 'ossl_ssl.c')
-rw-r--r--ossl_ssl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ossl_ssl.c b/ossl_ssl.c
index 2170c7a..e4fb0bf 100644
--- a/ossl_ssl.c
+++ b/ossl_ssl.c
@@ -656,15 +656,15 @@ Init_ossl_ssl()
* ossl_ssl_def_const(OP_DONT_INSERT_EMPTY_FRAGMENTS);
*/
ossl_ssl_def_const(OP_ALL);
-#if SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
+#if defined(SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION)
ossl_ssl_def_const(OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
#endif
-#ifdef SSL_OP_SINGLE_ECDH_USE
+#if defined(SSL_OP_SINGLE_ECDH_USE)
ossl_ssl_def_const(OP_SINGLE_ECDH_USE);
#endif
ossl_ssl_def_const(OP_SINGLE_DH_USE);
ossl_ssl_def_const(OP_EPHEMERAL_RSA);
-#if SSL_OP_CIPHER_SERVER_PREFERENCE
+#if defined(SSL_OP_CIPHER_SERVER_PREFERENCE)
ossl_ssl_def_const(OP_CIPHER_SERVER_PREFERENCE);
#endif
ossl_ssl_def_const(OP_TLS_ROLLBACK_BUG);