Commit 56dab605 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

- I fixed the problem with doing NTLM, POST and then following a 302 redirect,

  as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on
  curl-library). The transfer was mistakenly marked to get more data to send
  but since it didn't actually have that, it just hung there...
parent 3aa3d7e6
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -6,6 +6,12 @@

                                  Changelog

Daniel Stenberg (11 May 2009)
- I fixed the problem with doing NTLM, POST and then following a 302 redirect,
  as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on
  curl-library). The transfer was mistakenly marked to get more data to send
  but since it didn't actually have that, it just hung there...

Daniel Stenberg (10 May 2009)
- Andre Guibert de Bruet correctly pointed out an over-alloc with one wasted
  byte in the digest code.
+2 −1
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ This release includes the following bugfixes:
 o fixed roff mistakes in man pages
 o use SOCKS proxy with the multi interface
 o fixed the Curl_getoff_all_pipelines SIGSEGV 
 o POST, NTLM and following a redirect hang

This release includes the following known bugs:

@@ -57,6 +58,6 @@ advice from friends like these:
 Kamil Dudka, Jim Freeman, Daniel Johnson, Toshio Kuratomi, Martin Storsjo,
 Pramod Sharma, Gisle Vanem, Lenaic Lefever, Rainer Koenig, Sven Wegener,
 Tim Chen, Constantine Sapuntzakis, David McCreedy, Michael Smith,
 Colin Watson
 Colin Watson, Ebenezer Ikonne, Laurent Rabret

        Thanks! (and sorry if I forgot to mention someone)
+0 −2
Original line number Diff line number Diff line
@@ -12,8 +12,6 @@ To be addressed in 7.19.5 (planned release: May 2009)

236 - timeout in milliseconds doesn't seem to work

237 - Redirection failing with NTLM authentication

239 -

To be addressed in 7.19.6 (planned release: July 2009)
+2 −0
Original line number Diff line number Diff line
@@ -369,6 +369,8 @@ CURLcode Curl_http_perhapsrewind(struct connectdata *conn)
    case HTTPREQ_POST:
      if(data->set.postfieldsize != -1)
        expectsend = data->set.postfieldsize;
      else if(data->set.postfields)
        expectsend = (curl_off_t)strlen(data->set.postfields);
      break;
    case HTTPREQ_PUT:
      if(data->set.infilesize != -1)
+1 −1
Original line number Diff line number Diff line
@@ -4,4 +4,4 @@
# per line.
# Lines starting with '#' letters are treated as comments.
563
1100
Loading