]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
misc: Fix incorrect spelling
authorandy5995 <arch_stanton5995@protonmail.com>
Tue, 6 Dec 2022 19:34:12 +0000 (13:34 -0600)
committerDaniel Gustafsson <daniel@yesql.se>
Tue, 6 Dec 2022 22:18:23 +0000 (23:18 +0100)
Fix various uses of connnect by replacing them with connect.

Closes: #10045
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
docs/TODO
lib/http.h
packages/vms/gnv_conftest.c_first

index 32910443572a2b5fc1b743a50b110fe6fdecd8ee..ba3e84a592a89768de0d7e25aff77d9146181ed0 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
@@ -70,7 +70,7 @@
  4.7 STAT for LIST without data connection
 
  5. HTTP
- 5.1 Provide the error body from a CONNNECT response
+ 5.1 Provide the error body from a CONNECT response
  5.2 Set custom client ip when using haproxy protocol
  5.3 Rearrange request header order
  5.4 Allow SAN names in HTTP/2 server push
 
 5. HTTP
 
-5.1 Provide the error body from a CONNNECT response
+5.1 Provide the error body from a CONNECT response
 
  When curl receives a body response from a CONNECT request to a proxy, it will
  always just read and ignore it. It would make some users happy if curl
index f7cbb34244dc210ed3624f1f572837053023f8cb..ecfe4eed0a5dff9fdc8fb0e67c56cab566701de9 100644 (file)
@@ -317,7 +317,7 @@ struct http_conn {
   uint8_t binsettings[H2_BINSETTINGS_LEN];
   size_t  binlen; /* length of the binsettings data */
 
-  /* We associate the connnectdata struct with the connection, but we need to
+  /* We associate the connectdata struct with the connection, but we need to
      make sure we can identify the current "driving" transfer. This is a
      work-around for the lack of nghttp2_session_set_user_data() in older
      nghttp2 versions that we want to support. (Added in 1.31.0) */
index 2ee244735583107034c0e4a23f06a32fbef21976..7f5952d4cea7b2ac9970b54169947cc9d85f5946 100644 (file)
@@ -31,7 +31,7 @@ char ldap_url_parse(void) {return 0;}
 /* These are to pass the test that does not use headers */
 /* Because configure does an #undef which keeps us from using #define */
 /* char CRYPTO_add_lock(void) {return 0;} */
-char SSL_connnect(void) {return 0;}
+char SSL_connect(void) {return 0;}
 char ENGINE_init(void) {return 0;}
 char RAND_status(void) {return 0;}
 /* char RAND_screen(void) {return 0;} In headers, but not present */