curl_easy_reset() now resets the CA bundle path correctly

This commit is contained in:
Daniel Stenberg 2007-01-28 12:58:13 +00:00
parent d31153584e
commit e5adab39b1
3 changed files with 10 additions and 2 deletions

View File

@ -7,6 +7,8 @@
Changelog Changelog
Daniel (28 January 2007) Daniel (28 January 2007)
- curl_easy_reset() now resets the CA bundle path correctly.
- David McCreedy fixed the Curl command line tool for HTTP on non-ASCII - David McCreedy fixed the Curl command line tool for HTTP on non-ASCII
platforms. platforms.

View File

@ -7,7 +7,7 @@ Curl and libcurl 7.16.1
Number of public functions in libcurl: 54 Number of public functions in libcurl: 54
Amount of public web site mirrors: 39 Amount of public web site mirrors: 39
Number of known libcurl bindings: 35 Number of known libcurl bindings: 35
Number of contributors: 524 Number of contributors: 539
This release includes the following changes: This release includes the following changes:
@ -54,6 +54,11 @@ This release includes the following bugfixes:
o CURLOPT_COOKIELIST set to "ALL" crash o CURLOPT_COOKIELIST set to "ALL" crash
o easy handle removal from multi handle before completion o easy handle removal from multi handle before completion
o TFTP upload memory leak o TFTP upload memory leak
o curl_easy_reset() now resets the CA bundle path correctly
This release includes the following known bugs:
o see docs/KNOWN_BUGS (http://curl.haxx.se/docs/knownbugs.html)
Other curl-related news: Other curl-related news:

View File

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -87,6 +87,7 @@
#include "progress.h" #include "progress.h"
#include "easyif.h" #include "easyif.h"
#include "sendf.h" /* for failf function prototype */ #include "sendf.h" /* for failf function prototype */
#include <ca-bundle.h>
#define _MPRINTF_REPLACE /* use our functions only */ #define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h> #include <curl/mprintf.h>