]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
spelling: fix new finds by typos-cli 1.39.0
authorViktor Szakats <commit@vsz.me>
Fri, 31 Oct 2025 20:17:31 +0000 (21:17 +0100)
committerViktor Szakats <commit@vsz.me>
Fri, 31 Oct 2025 20:31:32 +0000 (21:31 +0100)
Closes #19312

lib/cfilters.h
lib/ws.c
tests/server/rtspd.c

index 2fab300b211a0f0dd71412c185746fd976d65ab6..6cb4a6909c36852a208e940c8e536938017a59d1 100644 (file)
@@ -513,7 +513,7 @@ CURLcode Curl_cf_send(struct Curl_easy *data, int sockindex,
 
 /**
  * Receive bytes from connection filter `cf` into `bufq`.
- * Convenience wrappter around `Curl_bufq_sipn()`,
+ * Convenience wrapper around `Curl_bufq_sipn()`,
  * so users do not have to implement a callback.
  */
 CURLcode Curl_cf_recv_bufq(struct Curl_cfilter *cf,
index ec79235550301ad9dba8beba1bb521766fb8d2b0..683841ecbbf1a8f2bd5b8c08ea22f8081796ba71 100644 (file)
--- a/lib/ws.c
+++ b/lib/ws.c
@@ -990,7 +990,7 @@ static CURLcode ws_enc_add_pending(struct Curl_easy *data,
                             (curl_off_t)ws->pending.payload_len,
                             &ws->sendbuf);
   if(result) {
-    CURL_TRC_WS(data, "ws_enc_cntrl(), error addiong head: %d",
+    CURL_TRC_WS(data, "ws_enc_cntrl(), error adding head: %d",
                 result);
     goto out;
   }
index 5e8bdc15cea3881202cb0f419c1eea37d9d30148..d13b8ff9a96b7330434a3faddb1df7af633045a2 100644 (file)
@@ -631,7 +631,7 @@ static int rtspd_get_request(curl_socket_t sock, struct rtspd_httprequest *req)
     else {
       if(req->skip)
         /* we are instructed to not read the entire thing, so we make sure to
-           only read what we're supposed to and NOT read the enire thing the
+           only read what we're supposed to and NOT read the entire thing the
            client wants to send! */
         got = sread(sock, reqbuf + req->offset, req->cl);
       else