From: Daniel Stenberg Date: Thu, 24 Aug 2023 08:02:23 +0000 (+0200) Subject: lib: minor comment corrections X-Git-Tag: curl-8_3_0~115 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ff7cd75c711ad66164ccede7b56a4d4c852f288;p=thirdparty%2Fcurl.git lib: minor comment corrections --- diff --git a/lib/multi.c b/lib/multi.c index 736941b7b4..1d1acb6396 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -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; diff --git a/lib/urldata.h b/lib/urldata.h index 25ccee88f6..0af5a94ddd 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -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);