recent fixes
authorDaniel Stenberg <daniel@haxx.se>
Fri, 30 Aug 2002 09:20:49 +0000 (09:20 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 30 Aug 2002 09:20:49 +0000 (09:20 +0000)
CHANGES

diff --git a/CHANGES b/CHANGES
index a582244..466c35b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,25 @@
 
                                   Changelog
 
+Daniel (27 Aug 2002)
+- After lots of talk with Tom Zerucha, Nick Gimbrone and Cris Bailiff I
+  decided to talk the bold path and I now introduced the CURLOPT_SSL_INSECURE
+  option that needs to be set to TRUE to allow libcurl to connect to SSL sites
+  without using a CA certificate to verify it with.
+
+  The curl tool similarly requires the -k/--insecure optin in order to allow
+  connections and operations on SSL sites that aren't properly verified with
+  -cafile or --capath
+
+Daniel (26 Aug 2002)
+- Andrew Francis cleaned up some code that now compiles fine without the need
+  for ugly MSVC pragmas.
+
+- Keith MacDonald found a minor bug in src/main.c that made it close stdin
+  instead of the actual file handle. It shouldn't have resulted in much
+  trouble as most operating systems close all file handles on process exit
+  anyway.
+
 Daniel (22 Aug 2002)
 - Markus Oberhumer provided some documentation for his previously provided
   CURLOPT_NOSIGNAL fix.
@@ -25,7 +44,7 @@ Daniel (13 Aug 2002)
   using "curl.h" instead of <curl/curl.h> which thus allows people to more
   freely decide how to include curl and how to setup their include paths.
 
-- Sterling Hughes added the curl_share* interface, somewhat as descussed
+- Sterling Hughes added the curl_share* interface, somewhat as discussed
   previously.
 
 - Jörn Hartroth pointed out that poll() was used in the pre1 source code and