diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-11-14 07:11:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-11-14 07:11:39 +0000 |
commit | b8ff21124ac31da4e79d0d8e62047c54f8638c00 (patch) | |
tree | dd6aa85289843915dd81a4f9fc38ab590c2180bf /lib | |
parent | 6aafc2dfd2beab6d00b7af3c3b7cef8990ca2a6f (diff) |
Samuel Listopad's fix to allow global_init => global_cleanup => global_init
for ssl
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssluse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index b872f231b..b167bfd28 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -292,6 +292,8 @@ void Curl_SSL_cleanup(void) /* EVP_cleanup() removes all ciphers and digests from the table. */ EVP_cleanup(); + + init_ssl=0; /* not inited any more */ } #else /* SSL disabled, do nothing */ |