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
This commit is contained in:
James Yonan 2010-10-24 09:17:24 +00:00
parent 3cf9dd88fd
commit d053e36df9

View File

@ -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);