aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-02-04 09:51:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-02-04 09:51:41 +0000
commit685b180ab6cad415f18eb0c1cef694c3b7b1c704 (patch)
treef1223ff9fd976a0c656de564cdefb1a0dbb21ffe /CHANGES
parent9dab850874a3a2adfd7db469c1017fcff11c208e (diff)
downloadgnurl-685b180ab6cad415f18eb0c1cef694c3b7b1c704.tar.gz
gnurl-685b180ab6cad415f18eb0c1cef694c3b7b1c704.tar.bz2
gnurl-685b180ab6cad415f18eb0c1cef694c3b7b1c704.zip
7.9.4-pre2
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES29
1 files changed, 29 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index d0a1a9d65..67e9bb1f7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,12 +6,41 @@
History of Changes
+
+Daniel (3 February 2002)
+- Eric Melville provided a few spelling corrections in the curl man page.
+
+Daniel (1 February 2002)
+- Andreas Damm corrected the unconditional use of gmtime() in getdate, it now
+ uses gmtime_r() on all hosts that have it.
+
+Daniel (31 January 2002)
+- An anonymous bug report identified a problem in the DNS caching which made it
+ sometimes allocate one byte too little to store the cache entry in. This
+ happened when the port number started with 1!
+
+- Albert Chin provided a patch that improves the gethostbyname_r() configure
+ check on HP-UX 11.00.
+
+Version 7.9.4-pre1
+
+Daniel (30 January 2002)
+- Georg Horn found another way the SSL reading failed due to the non-blocking
+ state of the sockets! I fixed.
+
Daniel (29 January 2002)
+- Multipart formposts now send the full request properly, including the CRLF.
+ They were previously treated as part of the post data.
+
+- The upload byte counter bugged.
+
- T. Bharath pointed out that we seed SSL on every connect, which is a time-
consuming operation that should only be needed to do once. We patched
libcurl to now only seed on the first connect when unseeded. The seeded
status is global so it'll now only happen once during a program's life time.
+ If the random_file or egdsocket is set, the seed will be re-made though.
+
- Giaslas Georgios introduced CURLINFO_CONTENT_TYPE that lets
curl_easy_getinfo() read the content-type from the previous request.