]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
source: misc typos
authorDaniel Stenberg <daniel@haxx.se>
Thu, 1 Jan 2026 11:18:39 +0000 (12:18 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 1 Jan 2026 11:43:59 +0000 (12:43 +0100)
Found by typos-cli

Closes #20138

lib/cf-ip-happy.c
lib/progress.h
lib/rtsp.c
lib/vauth/vauth.c
src/tool_operate.c
src/tool_ssls.c

index a24abbe1906bfddc650d14ae4f0178c25416a83d..05e9505e2abe5b5090ae9d4d1671b6dee7afa7b3 100644 (file)
@@ -515,10 +515,10 @@ out:
       expire_ms = CURLMAX(bs->attempt_delay_ms - elapsed_ms, 0);
       next_expire_ms = CURLMIN(next_expire_ms, expire_ms);
       if(next_expire_ms <= 0) {
-        CURL_TRC_CF(data, cf, "HAPPY_EYBALLS timeout due, re-evaluate");
+        CURL_TRC_CF(data, cf, "HAPPY_EYEBALLS timeout due, re-evaluate");
         goto evaluate;
       }
-      CURL_TRC_CF(data, cf, "next HAPPY_EYBALLS timeout in %" FMT_TIMEDIFF_T
+      CURL_TRC_CF(data, cf, "next HAPPY_EYEBALLS timeout in %" FMT_TIMEDIFF_T
                   "ms", next_expire_ms);
       Curl_expire(data, next_expire_ms, EXPIRE_HAPPY_EYEBALLS);
     }
index e604a499edc1f562aac970bfcc292dd2f8f2a98b..9cb0924ddc6492c259603749c124f85988d7f3a3 100644 (file)
@@ -66,7 +66,7 @@ CURLcode Curl_pgrsCheck(struct Curl_easy *data);
 void Curl_pgrsRecvPause(struct Curl_easy *data, bool enable);
 void Curl_pgrsSendPause(struct Curl_easy *data, bool enable);
 
-/* Reset sizes and couners for up- and download. */
+/* Reset sizes and counters for up- and download. */
 void Curl_pgrsReset(struct Curl_easy *data);
 /* Reset sizes for up- and download. */
 void Curl_pgrsResetTransferSizes(struct Curl_easy *data);
index 3d705564003488e97b7eb265816eb96cf1cf1c11..93bcbeb4e82e1a3a994b7b30e7ff235857b20e16 100644 (file)
@@ -1059,7 +1059,7 @@ CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, const char *header)
 static CURLcode rtsp_parse_transport(struct Curl_easy *data,
                                      const char *transport)
 {
-  /* If we receive multiple Transport response-headers, the linterleaved
+  /* If we receive multiple Transport response-headers, the interleaved
      channels of each response header is recorded and used together for
      subsequent data validity checks.*/
   /* e.g.: ' RTP/AVP/TCP;unicast;interleaved=5-6' */
index 9c37df947cde5586342c5a1d9b8dd6e1586ebe3d..a74c2a1abad26102865b1b980980699685398a47 100644 (file)
@@ -132,7 +132,7 @@ bool Curl_auth_user_contains_domain(const char *user)
 }
 
 /*
- * Curl_auth_ollowed_to_host() tells if authentication, cookies or other
+ * Curl_auth_allowed_to_host() tells if authentication, cookies or other
  * "sensitive data" can (still) be sent to this host.
  */
 bool Curl_auth_allowed_to_host(struct Curl_easy *data)
index 8318c27116b8c213d9335fd4416687fea7223b74..4bc98a1e52be30b07046c4c9a6d2fc9df491d7e3 100644 (file)
@@ -1697,7 +1697,7 @@ static CURLcode parallel_event(struct parastate *s)
   }
 
   /* We need to cleanup the multi here, since the uv context lives on the
-   * stack and will be gone. multi_cleanup can triggere events! */
+   * stack and will be gone. multi_cleanup can trigger events! */
   curl_multi_cleanup(s->multi);
 
 #if DEBUG_UV
index 6ad5c2475dad998f61feabe08364d4408f6b2ee5..4937031d6b8ecf4fe124896460561d9e1e3dbebb 100644 (file)
@@ -30,7 +30,7 @@
 #include "tool_ssls.h"
 #include "tool_parsecfg.h"
 
-/* The maximum line length for an ecoded session ticket */
+/* The maximum line length for an encoded session ticket */
 #define MAX_SSLS_LINE (64 * 1024)
 
 static CURLcode tool_ssls_easy(struct OperationConfig *config,