]> granicus.if.org Git - curl/commitdiff
socksd: Fix typos
authorDaniel Gustafsson <daniel@yesql.se>
Sun, 14 Apr 2019 20:06:40 +0000 (22:06 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Sun, 14 Apr 2019 20:06:40 +0000 (22:06 +0200)
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
tests/server/socksd.c

index 89bbb3f78ae454a731875e9c16f903b0bb3b7d5c..df32a49a15d9be4bcdc777fa54356511a4f455a1 100644 (file)
@@ -109,7 +109,7 @@ static const char *backendaddr = "127.0.0.1";
 static unsigned short backendport = 0; /* default is use client's */
 
 struct configurable {
-  unsigned char version; /* inital version byte in the request must match
+  unsigned char version; /* initial version byte in the request must match
                             this */
   unsigned char nmethods_min; /* minimum number of nmethods to expect */
   unsigned char nmethods_max; /* maximum number of nmethods to expect */
@@ -623,7 +623,7 @@ static curl_socket_t sockit(curl_socket_t fd)
     len = 16;
     break;
   default:
-    logmsg("Unkown ATYP %d", type);
+    logmsg("Unknown ATYP %d", type);
     return CURL_SOCKET_BAD;
   }
   if(rc < (4 + len + 2)) {