aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-07-19 23:58:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-07-19 23:58:21 +0000
commita2a63c27f466beab656f7e25d178dc33ff6f3ca5 (patch)
tree7cdd740d7c0e3b9349e4bbecb57b62d7de8990ff /CHANGES
parentc50a601f1a77b393503207b7fea4352a28b8a05e (diff)
explains my fixes just committed
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index a91b47705..08286c7be 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,18 @@
Changelog
+Daniel (18 July)
+- Cris pointed out that my fix on July 16th didn't work fully. His pointing
+ out this (and his patch) also made me realize that we have a very similar
+ bug in the FTP connection re-use code. We must store a separate user and
+ password field for each connection we keep (at least for FTP and HTTP+NTLM
+ connections, so I made us do this unconditionally).
+
+- Since NTLM authenticates connections instead of single requests, I had to
+ re-arrange how we store the NTLM data and I had to improve the test suite to
+ finally work properly with persistancy to make the NTLM tests run fine
+ again. This also forced me to have to update lots of HTTP test cases.
+
Daniel (16 July)
- Cris Bailiff's bug report 768275 pointed out that using Basic auth with
wrong user+password caused an endless loop. Fixed now. He also found out that