diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-03 16:06:10 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-03 16:07:09 +0200 |
commit | 6b75d2c2df7209919a70a29a4479625b62fb3c28 (patch) | |
tree | a5b2bd4195db4cb69f3299814e910bd04ebb6eac /lib/polarssl.h | |
parent | 2be65bb0c5317b6821882b41558bd8cd2eb64d25 (diff) | |
download | curl-6b75d2c2df7209919a70a29a4479625b62fb3c28.tar.gz |
fix a bunch of MSVC compiler warnings
Diffstat (limited to 'lib/polarssl.h')
-rw-r--r-- | lib/polarssl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/polarssl.h b/lib/polarssl.h index 92234e20e..91f63afbf 100644 --- a/lib/polarssl.h +++ b/lib/polarssl.h @@ -21,6 +21,7 @@ * KIND, either express or implied. * ***************************************************************************/ +#include "setup.h" #ifdef USE_POLARSSL @@ -39,7 +40,7 @@ int Curl_polarssl_shutdown(struct connectdata *conn, int sockindex); /* API setup for PolarSSL */ #define curlssl_init() (1) -#define curlssl_cleanup() +#define curlssl_cleanup() Curl_nop_stmt #define curlssl_connect Curl_polarssl_connect #define curlssl_session_free(x) Curl_polarssl_session_free(x) #define curlssl_close_all Curl_polarssl_close_all |