]> granicus.if.org Git - curl/commitdiff
curl_easy_reset() now resets the CA bundle path correctly
authorDaniel Stenberg <daniel@haxx.se>
Sun, 28 Jan 2007 12:58:13 +0000 (12:58 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 28 Jan 2007 12:58:13 +0000 (12:58 +0000)
CHANGES
RELEASE-NOTES
lib/easy.c

diff --git a/CHANGES b/CHANGES
index 74175abae2e1872b52509c051debe7d555097e88..4249a58da4be872c968d942d03ed0da224e53432 100644 (file)
--- 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.
 
index b051279670a51e90bc8218a382e9651709564baf..c3a9da4ffc18d0689794433abc3245b33157f739 100644 (file)
@@ -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:
 
index f78daedc56f457f97cbe63f57cccdaefc361f3a3..f3c227317950e41fd0cd84bbeb2e4f92bd24a125 100644 (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
  * 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>