]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
lib: minor comment corrections
authorDaniel Stenberg <daniel@haxx.se>
Thu, 24 Aug 2023 08:02:23 +0000 (10:02 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 24 Aug 2023 08:02:23 +0000 (10:02 +0200)
lib/multi.c
lib/urldata.h

index 736941b7b4338198a8323a60b06cde81baf44aa5..1d1acb63967548f12c5cfc3bb3dd1326d90cfcb0 100644 (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;
index 25ccee88f6444f87655414ce2c1f12072602d89b..0af5a94ddd47a6a7e6f721516b7a4f1dbd5fe357 100644 (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);