]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
urldata.h: fix typo and lingering backtick
authorDaniel Stenberg <daniel@haxx.se>
Fri, 24 Apr 2026 05:55:00 +0000 (07:55 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 24 Apr 2026 06:18:57 +0000 (08:18 +0200)
Spotted by Copilot

Closes #21430

lib/urldata.h

index 214fbeddcb82786a2ffb8a35531e10a9e437502c..70f70a7bc1d4793e6b7f679a87ac679fa0b38d49 100644 (file)
@@ -389,7 +389,7 @@ struct connectdata {
   char *sasl_authzid;     /* authorization identity string, allocated */
   char *oauth_bearer; /* OAUTH2 bearer, allocated */
   struct curltime created; /* creation time */
-  struct curltime lastused; /* when returned to the connection poolas idle */
+  struct curltime lastused; /* when returned to the connection pool as idle */
 
   /* A connection can have one or two sockets and connection filters.
    * The protocol using the 2nd one is FTP for CONTROL+DATA sockets */
@@ -470,10 +470,10 @@ struct connectdata {
   uint16_t localport;
   uint16_t secondary_port; /* secondary socket remote port to connect to
                                     (ftp) */
-  uint8_t transport_wanted; /* one of the TRNSPRT_* defines. Not
-   necessarily the transport the connection ends using due to Alt-Svc
-   and happy eyeballing. Use `Curl_conn_get_transport() for actual value
-   once the connection is set up. */
+  uint8_t transport_wanted; /* one of the TRNSPRT_* defines. Not necessarily
+   the transport the connection ends using due to Alt-Svc and happy
+   eyeballing. Use Curl_conn_get_transport() for actual value once the
+   connection is set up. */
   uint8_t ip_version; /* copied from the Curl_easy at creation time */
   /* HTTP version last responded with by the server or negotiated via ALPN.
    * 0 at start, then one of 09, 10, 11, etc. */