summaryrefslogtreecommitdiffstats
path: root/ssl_verify_openssl.c
diff options
context:
space:
mode:
authorAdriaan de Jong <dejong@fox-it.com>2011-10-24 10:46:01 +0200
committerDavid Sommerseth <davids@redhat.com>2011-10-24 12:35:51 +0200
commit31ea2ee4ca642a4d8bbdac3dadb44eca11f52e35 (patch)
tree0998f1d80063a45ceedc7d1587251ca6ea28bd45 /ssl_verify_openssl.c
parent7c785a27bfe5267ee4aac12fe6d0a24c42e388d6 (diff)
downloadopenvpn-31ea2ee4ca642a4d8bbdac3dadb44eca11f52e35.tar.gz
openvpn-31ea2ee4ca642a4d8bbdac3dadb44eca11f52e35.tar.xz
openvpn-31ea2ee4ca642a4d8bbdac3dadb44eca11f52e35.zip
Fixed disabling crypto and SSL
Signed-off-by: Adriaan de Jong <dejong@fox-it.com> Acked-by: David Sommerseth <davids@redhat.com> Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'ssl_verify_openssl.c')
-rw-r--r--ssl_verify_openssl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ssl_verify_openssl.c b/ssl_verify_openssl.c
index 4f090e6..13c2f4e 100644
--- a/ssl_verify_openssl.c
+++ b/ssl_verify_openssl.c
@@ -27,6 +27,10 @@
* @file Control Channel Verification Module OpenSSL implementation
*/
+#include "syshead.h"
+
+#if defined(USE_SSL) && defined(USE_OPENSSL)
+
#include "ssl_verify.h"
#include "ssl_verify_backend.h"
#include "ssl_openssl.h"
@@ -584,3 +588,5 @@ end:
return retval;
}
+
+#endif /* defined(USE_SSL) && defined(USE_OPENSSL) */