aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-07-29 22:59:36 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-07-29 22:59:36 +0000
commitc1cfdd6323005343e313f8484076725e395f5d70 (patch)
tree4f6b5ea6e9a759c2f50f51d30e0d73de79f96544
parent264a9bc6ed650375243a5ab38d323fe385ea256e (diff)
passwords and cookies
-rw-r--r--CHANGES13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index ef3c9b4aa..89920ed56 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,19 @@
Changelog
+Daniel (30 Jul 2002)
+- Correct the description for CURLOPT_PASSWDFUNCTION, if set to NULL the
+ internal default function will be put back.
+
+- danfuzz at milk.com found out that libcurl badly assumed a space after
+ 'Set-Cookie:' so if it wasn't present, it caused the first letter of the
+ cookie name to fall off!
+
+Daniel (29 Jul 2002)
+- The password prompt asking for user password used stdout and now uses
+ stderr instead to better allow redirecting. It also leaked a fopen() file
+ handle that is now fixed.
+
Daniel (28 Jul 2002)
- HAVE_SETVBUF was left out from src/main.c which made -N not work. Found out
by M T.