Cris Bailiff's fix to disable chunked transfers on re-used persistent

connections.
This commit is contained in:
Daniel Stenberg 2001-05-03 10:53:01 +00:00
parent a33eb9881c
commit 350c536f6c

View File

@ -2033,6 +2033,7 @@ static CURLcode Connect(struct UrlData *data,
/* re-use init */
conn->bits.reuse = TRUE; /* yes, we're re-using here */
conn->bits.chunk = FALSE; /* always assume not chunked unless told otherwise */
conn->maxdownload = -1; /* might have been used previously! */
free(old_conn); /* we don't need this anymore */