]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Make base64.h have the same conditional compilation expression as
authorJames Yonan <james@openvpn.net>
Sun, 24 Oct 2010 09:17:24 +0000 (09:17 +0000)
committerJames Yonan <james@openvpn.net>
Sun, 24 Oct 2010 09:17:24 +0000 (09:17 +0000)
base64.c.

git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6569 e7ae566f-a301-0410-adde-c780ea21d3b5

base64.h

index a966b2d768596dfafbea1b653ea60bd5e40a1020..968d18d7cb9367bff3938f2468850d5388105480 100644 (file)
--- a/base64.h
+++ b/base64.h
@@ -34,7 +34,7 @@
 #ifndef _BASE64_H_
 #define _BASE64_H_
 
-#ifdef ENABLE_HTTP_PROXY
+#if defined(ENABLE_HTTP_PROXY) || defined(ENABLE_PKCS11) || defined(ENABLE_CLIENT_CR)
 
 int base64_encode(const void *data, int size, char **str);
 int base64_decode(const char *str, void *data);