mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
fix the return code for curl_multi_add_handle()
This commit is contained in:
parent
811dfd710b
commit
92637303db
4
CHANGES
4
CHANGES
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel (31 August 2004)
|
||||||
|
- David Tarendash fount out that curl_multi_add_handle() returned
|
||||||
|
CURLM_CALL_MULTI_PERFORM instead of CURLM_OK.
|
||||||
|
|
||||||
Daniel (30 August 2004)
|
Daniel (30 August 2004)
|
||||||
- Make "Proxy-Connection: close" close the current proxy connection, as Roman
|
- Make "Proxy-Connection: close" close the current proxy connection, as Roman
|
||||||
Koifman found out.
|
Koifman found out.
|
||||||
|
@ -177,7 +177,7 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle,
|
|||||||
/* increase the node-counter */
|
/* increase the node-counter */
|
||||||
multi->num_easy++;
|
multi->num_easy++;
|
||||||
|
|
||||||
return CURLM_CALL_MULTI_PERFORM;
|
return CURLM_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
|
CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
|
||||||
|
Loading…
Reference in New Issue
Block a user