Commit f71165b5 authored by Nils Larsch's avatar Nils Larsch
Browse files

fix no-dh configure option; patch supplied by Peter Meerwald

parent 350a404c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -296,7 +296,7 @@ CERT *ssl_cert_dup(CERT *cert)

	return(ret);
	
#ifndef OPENSSL_NO_DH /* avoid 'unreferenced label' warning if OPENSSL_NO_DH is defined */
#if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_ECDH)
err:
#endif
#ifndef OPENSSL_NO_RSA
+1 −1
Original line number Diff line number Diff line
@@ -2234,6 +2234,7 @@ static DH *get_dh1024dsa()
	dh->length = 160;
	return(dh);
	}
#endif

static int do_test_cipherlist(void)
	{
@@ -2291,4 +2292,3 @@ static int do_test_cipherlist(void)

	return 1;
	}
#endif