summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-09-28 10:26:44 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-09-28 10:26:44 +0000
commit13962adcb55a676b0b47925680b2e17b3e4815f0 (patch)
treed1a53e3d0ebafde09e27e6cdd01b5e2948e78e1b /CHANGES
parent221f1c2ca288ce33501e867f1df45f4d84fbe8e5 (diff)
downloadcurl-13962adcb55a676b0b47925680b2e17b3e4815f0.tar.gz
7.3 commitcurl-7_3
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES14
1 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index e2d3e6619..4ad41f685 100644
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,18 @@
Version 7.3
+Daniel (28 September 2000)
+- Removed the base64_krb.[ch] files. They've now replaced the former
+ base64.[ch] files.
+
+Daniel (26 September 2000)
+- Updated some docs.
+
+- I changed the OpenSSL fix to work with older versions as well. The posted
+ patch was only working with 0.9.6 and no older ones.
+
+Version 7.3-pre8
+
Daniel (25 September 2000)
- Erdmut Pfeifer informed us that curl didn't build with OpenSSL 0.9.6 and
showed us what needed to get patched in order to make it build properly
@@ -33,7 +45,7 @@ Daniel (21 September 2000)
Daniel (20 September 2000)
- Richard Prescott solved another name lookup buffer size problem. I took this
opportunity to rewrite the GetHost() function. With these large buffer
- sizes, I think keeping them as local arrays quickly turn ugly. I know use
+ sizes, I think keeping them as local arrays quickly turn ugly. I now use
malloc() to get the buffer memory. Thanks to this, I now can realloc() to a
large buffer in case of demand (errno == ERANGE) in case a solution like
that would become necessary. I still want to avoid that kind of nastiness.