From: James Yonan Date: Sun, 24 Oct 2010 09:17:24 +0000 (+0000) Subject: Make base64.h have the same conditional compilation expression as X-Git-Tag: v2.2-beta4~8^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d053e36df93aabcdb23e9971c48f990aa77bda4e;p=thirdparty%2Fopenvpn.git Make base64.h have the same conditional compilation expression as base64.c. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6569 e7ae566f-a301-0410-adde-c780ea21d3b5 --- diff --git a/base64.h b/base64.h index a966b2d76..968d18d7c 100644 --- 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);