diff options
author | James Yonan <james@openvpn.net> | 2010-11-16 09:10:39 +0000 |
---|---|---|
committer | James Yonan <james@openvpn.net> | 2010-11-16 09:10:39 +0000 |
commit | 2d12eb12cf2a49adbc2e89e20990415947519900 (patch) | |
tree | b303918b6ac230f24e8aa5f3460a1301910060e3 | |
parent | In verify_callback, the subject var should be freed by OPENSSL_free, (diff) | |
download | openvpn-2d12eb12cf2a49adbc2e89e20990415947519900.tar.xz |
Fixes to prevent compile breakage when --disable-crypto is used.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6656 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | base64.c | 6 | ||||
-rw-r--r-- | options.c | 1 |
2 files changed, 2 insertions, 5 deletions
@@ -80,8 +80,6 @@ base64_encode(const void *data, int size, char **str) return strlen(s); } -#if NTLM - static int pos(char c) { @@ -137,8 +135,6 @@ base64_decode(const char *str, void *data) return q - (unsigned char *) data; } -#endif /* NTLM, PKCS#11 */ - #else static void dummy(void) {} -#endif +#endif /* ENABLE_HTTP_PROXY, ENABLE_PKCS11, ENABLE_CLIENT_CR */ @@ -45,6 +45,7 @@ #include "pool.h" #include "helper.h" #include "manage.h" +#include "forward.h" #include "memdbg.h" |