summaryrefslogtreecommitdiff
path: root/dh.c
diff options
context:
space:
mode:
Diffstat (limited to 'dh.c')
-rw-r--r--dh.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/dh.c b/dh.c
index 475312427..eebee2377 100644
--- a/dh.c
+++ b/dh.c
@@ -25,6 +25,7 @@
25 25
26#include "includes.h" 26#include "includes.h"
27 27
28#ifdef WITH_OPENSSL
28 29
29#include <openssl/bn.h> 30#include <openssl/bn.h>
30#include <openssl/dh.h> 31#include <openssl/dh.h>
@@ -465,3 +466,5 @@ dh_estimate(int bits)
465 return 7680; 466 return 7680;
466 return 8192; 467 return 8192;
467} 468}
469
470#endif /* WITH_OPENSSL */