lib: minor comment corrections

This commit is contained in:
Daniel Stenberg 2023-08-24 10:02:23 +02:00
parent 5b060a4108
commit 2ff7cd75c7
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 1 additions and 2 deletions

View File

@ -1623,7 +1623,6 @@ static CURLcode multi_do(struct Curl_easy *data, bool *done)
DEBUGASSERT(conn->handler);
if(conn->handler->do_it)
/* generic protocol-specific function pointer set in curl_connect() */
result = conn->handler->do_it(data, done);
return result;

View File

@ -754,7 +754,7 @@ struct Curl_handler {
* after the connect() and everything is done, as a step in the connection.
* The 'done' pointer points to a bool that should be set to TRUE if the
* function completes before return. If it doesn't complete, the caller
* should call the curl_connecting() function until it is.
* should call the ->connecting() function until it is.
*/
CURLcode (*connect_it)(struct Curl_easy *data, bool *done);