summaryrefslogtreecommitdiff
path: root/kexecdh.c
diff options
context:
space:
mode:
Diffstat (limited to 'kexecdh.c')
-rw-r--r--kexecdh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kexecdh.c b/kexecdh.c
index c52c5e234..3115d13d1 100644
--- a/kexecdh.c
+++ b/kexecdh.c
@@ -26,7 +26,7 @@
26 26
27#include "includes.h" 27#include "includes.h"
28 28
29#ifdef OPENSSL_HAS_ECC 29#if defined(WITH_OPENSSL) && defined(OPENSSL_HAS_ECC)
30 30
31#include <sys/types.h> 31#include <sys/types.h>
32 32
@@ -94,4 +94,4 @@ kex_ecdh_hash(
94 *hash = digest; 94 *hash = digest;
95 *hashlen = ssh_digest_bytes(hash_alg); 95 *hashlen = ssh_digest_bytes(hash_alg);
96} 96}
97#endif /* OPENSSL_HAS_ECC */ 97#endif /* defined(WITH_OPENSSL) && defined(OPENSSL_HAS_ECC) */