aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-30 09:20:49 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-30 09:20:49 +0000
commitbd3bb70ee8e4f92d889699a34fa32eb525bf8565 (patch)
treeff5f3e2107e2a031035d27d728c1403c1efcd646 /CHANGES
parent8aa3f143035ad982acb6e596a8653ac41a7860cc (diff)
recent fixes
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES21
1 files changed, 20 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index a582244e3..466c35b40 100644
--- 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