adf540
ITS#7595 don't try to use EC if OpenSSL lacks it
adf540
adf540
Cherry-picked upstream 721e46fe6695077d63a3df6ea2e397920a72308d
adf540
Author: Howard Chu <hyc@openldap.org>
adf540
Date: Sun Sep 8 06:32:23 2013 -0700
adf540
adf540
diff --git a/libraries/libldap/tls_o.c b/libraries/libldap/tls_o.c
adf540
index 1a81bc625..71c2b055c 100644
adf540
--- a/libraries/libldap/tls_o.c
adf540
+++ b/libraries/libldap/tls_o.c
adf540
@@ -321,8 +321,12 @@ tlso_ctx_init( struct ldapoptions *lo, struct ldaptls *lt, int is_server )
adf540
 		DH_free( dh );
adf540
 	}
adf540
 
adf540
-#ifdef SSL_OP_SINGLE_ECDH_USE
adf540
 	if ( is_server && lo->ldo_tls_ecname ) {
adf540
+#ifdef OPENSSL_NO_EC
adf540
+		Debug( LDAP_DEBUG_ANY,
adf540
+			"TLS: Elliptic Curves not supported.\n", 0,0,0 );
adf540
+		return -1;
adf540
+#else
adf540
 		EC_KEY *ecdh;
adf540
 
adf540
 		int nid = OBJ_sn2nid( lt->lt_ecname );
adf540
@@ -344,8 +348,8 @@ tlso_ctx_init( struct ldapoptions *lo, struct ldaptls *lt, int is_server )
adf540
 		SSL_CTX_set_tmp_ecdh( ctx, ecdh );
adf540
 		SSL_CTX_set_options( ctx, SSL_OP_SINGLE_ECDH_USE );
adf540
 		EC_KEY_free( ecdh );
adf540
-	}
adf540
 #endif
adf540
+	}
adf540
 
adf540
 	if ( tlso_opt_trace ) {
adf540
 		SSL_CTX_set_info_callback( ctx, tlso_info_cb );