aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-01-28 12:58:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-01-28 12:58:13 +0000
commite5adab39b165baa3f3f8d7222573f46d54e30771 (patch)
treec4217d7899a1ce255468ad5f386ea430c651e22d
parentd31153584ee81d1bdc0d127ae47426fe9bd21060 (diff)
curl_easy_reset() now resets the CA bundle path correctly
-rw-r--r--CHANGES2
-rw-r--r--RELEASE-NOTES7
-rw-r--r--lib/easy.c3
3 files changed, 10 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 74175abae..4249a58da 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,8 @@
Changelog
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
platforms.
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index b05127967..c3a9da4ff 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -7,7 +7,7 @@ Curl and libcurl 7.16.1
Number of public functions in libcurl: 54
Amount of public web site mirrors: 39
Number of known libcurl bindings: 35
- Number of contributors: 524
+ Number of contributors: 539
This release includes the following changes:
@@ -54,6 +54,11 @@ This release includes the following bugfixes:
o CURLOPT_COOKIELIST set to "ALL" crash
o easy handle removal from multi handle before completion
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:
diff --git a/lib/easy.c b/lib/easy.c
index f78daedc5..f3c227317 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -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
* you should have received as part of this distribution. The terms
@@ -87,6 +87,7 @@
#include "progress.h"
#include "easyif.h"
#include "sendf.h" /* for failf function prototype */
+#include <ca-bundle.h>
#define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h>