diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-31 06:06:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-31 06:06:37 +0000 |
commit | 7f295939d062eb68a0d341af3605018602b14481 (patch) | |
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.
-rw-r--r-- | lib/easy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c index a4de38e17..4639bacd2 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; |