summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-14 16:59:49 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-14 16:59:49 +0000
commit3395a2fa9e6ae14d87ff4e120f3b44d6dbcb3430 (patch)
treeadae1c3c35a58888c3c70ab808438405ea5573c1
parenta564a54e215db69a74a02a37c3db88ae40f5a487 (diff)
downloadgnurl-3395a2fa9e6ae14d87ff4e120f3b44d6dbcb3430.tar.gz
gnurl-3395a2fa9e6ae14d87ff4e120f3b44d6dbcb3430.tar.bz2
gnurl-3395a2fa9e6ae14d87ff4e120f3b44d6dbcb3430.zip
netrc fix
-rw-r--r--CHANGES22
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 39d00bd01..d37006ff1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,28 @@
Daniel (14 March 2001)
+- I fell onto a bug report on php.net that obiously was better directed to our
+ project. Anyway, it said the .netrc parsing didn't work as supposed, and as
+ I agreed I made the netrc parser use getpwuid() to figure out the home
+ directory of the effective user and try that netrc. It still uses the
+ environment variable HOME for those that don't have that function or if the
+ user doesn't return valid pwd info.
+
+- Edin Kadribaic posted a bug report where he got a crash when a fetch with
+ user+password in the URL followed a Location: to a second URL (absolute,
+ without name+password). This bug has been around for a long while and
+ crashes due to a read at address zero. Fixed now. Wrote test case 38, that
+ tests this.
+
+- Modified the test suite's httpserver slightly to append all client request
+ data to its log file so that the test script now better can verify a range
+ of requests and not only the last one, as it did previously.
+
+- Updated the curl man page with --random-file and --egd-file details.
+
+Version 7.7-beta3
+
+Daniel (14 March 2001)
- Björn Stenberg provided similar fixes as Jörn did and some additional patches
for non-SSL compiles.