]> granicus.if.org Git - curl/commitdiff
Nic Roets brought a fix for the certificate verification when using SSL.
authorDaniel Stenberg <daniel@haxx.se>
Fri, 29 Jun 2001 07:38:11 +0000 (07:38 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 29 Jun 2001 07:38:11 +0000 (07:38 +0000)
CHANGES
lib/ssluse.c

diff --git a/CHANGES b/CHANGES
index 1c6d7e2c3ceb94d636244c23d21f54aed5db3eac..b3fc8c04547052b639598c360c0143e445499d1e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,16 @@
 
                                History of Changes
 
+Daniel (29 June 2001)
+- Nic Roets brought a fix for the certificate verification when using SSL.
+
+Daniel (27 June 2001)
+- Made the FTP tests run OK even on machines running curl IPv6-enabled.
+
+- Troy Engel corrected some RPM package details.
+
+Version 7.8.1-pre2
+
 Daniel (25 June 2001)
 - Björn Stenberg correctly identified a problem that occurred when downloading
   several files with curl, and using resume. The first file's resume index was
@@ -14,6 +24,8 @@ Daniel (25 June 2001)
 - Anton Kalmykov provided a fix that makes curl work with form field names
   with spaces like when -F is used.
 
+Version 7.8.1-pre1
+
 Daniel (20 June 2001)
 - Mike Bytnar provided a fine report that proved that the --with-ssl option
   for configure needed tweaking. It no longer searches the default directories
index d91cf5f7bde2decec7d4bd5f6db33d093e76228d..a35b051403a8178151c585a9a8e602c6e8b18f75 100644 (file)
@@ -230,7 +230,7 @@ int cert_verify_callback(int ok, X509_STORE_CTX *ctx)
   err_cert=X509_STORE_CTX_get_current_cert(ctx);
   X509_NAME_oneline(X509_get_subject_name(err_cert),buf,256);
 
-  return 1;
+  return ok;
 }
 
 #endif