commit | 7f295939d062eb68a0d341af3605018602b14481 | [log] [tgz] |
---|---|---|
author | Daniel Stenberg <daniel@haxx.se> | Thu May 31 06:06:37 2001 +0000 |
committer | Daniel Stenberg <daniel@haxx.se> | Thu May 31 06:06:37 2001 +0000 |
tree | 8c63e8ee86816a47528a8bfde7a0e8dcc7a72f0a | |
parent | aa27db698662e11e19f464b25eaf5727419ca3e6 [diff] |
went back to the version where the flags argument to curl_global_init() specify exactly what global parts to init. Thanks to Sterling Hughes really for arguing wisely.
diff --git a/lib/easy.c b/lib/easy.c index a4de38e..4639bac 100644 --- a/lib/easy.c +++ b/lib/easy.c
@@ -80,7 +80,7 @@ CURLcode curl_global_init(long flags) { - if(!(flags & CURL_GLOBAL_NOT_SSL)) + if(flags & CURL_GLOBAL_SSL) Curl_SSL_init(); return CURLE_OK;