aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-01-16 22:22:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-01-16 22:22:10 +0000
commit385e612fa5b7663fc2bc815677b8c27bec2f0fe4 (patch)
treebc211e48b4e8c57bb90090ab78c885ecab0a5496 /lib/url.c
parent1886388791fc658b55cdd45b3062556fde7a1375 (diff)
- Armel Asselin improved libcurl to behave a lot better when an easy handle
doing an FTP transfer is removed from a multi handle before completion. The fix also fixed the "alive counter" to be correct on "premature removal" for all protocols.
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/url.c b/lib/url.c
index 123d75b67..91cb57e2e 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -4087,7 +4087,7 @@ CURLcode Curl_async_resolved(struct connectdata *conn,
CURLcode Curl_done(struct connectdata **connp,
- CURLcode status) /* an error if this is called after an
+ CURLcode status, bool premature) /* an error if this is called after an
error was detected */
{
CURLcode result;
@@ -4127,7 +4127,7 @@ CURLcode Curl_done(struct connectdata **connp,
/* this calls the protocol-specific function pointer previously set */
if(conn->curl_done)
- result = conn->curl_done(conn, status);
+ result = conn->curl_done(conn, status, premature);
else
result = CURLE_OK;
@@ -4193,7 +4193,7 @@ CURLcode Curl_do(struct connectdata **connp, bool *done)
infof(data, "Re-used connection seems dead, get a new one\n");
conn->bits.close = TRUE; /* enforce close of this connection */
- result = Curl_done(&conn, result); /* we are so done with this */
+ result = Curl_done(&conn, result, FALSE); /* we are so done with this */
/* conn may no longer be a good pointer */