aboutsummaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorViktor Szakats <vszakats@users.noreply.github.com>2018-06-03 12:14:45 +0000
committerViktor Szakats <vszakats@users.noreply.github.com>2018-06-03 12:14:45 +0000
commit4bd91bc4742dbf194dd7a63519aa1ed32e4db47d (patch)
tree46fa0ad2951fd0cd86c3875b9c065a1aebc54217 /lib/easy.c
parent71c39f29651523ffda10d0abc17f9057f54bd356 (diff)
spelling fixes
Detected using the `codespell` tool (version 1.13.0). Also secure and fix an URL.
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 6b914353d..bf85075e1 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -113,7 +113,7 @@ static CURLcode win32_init(void)
res = WSAStartup(wVersionRequested, &wsaData);
if(res != 0)
- /* Tell the user that we couldn't find a useable */
+ /* Tell the user that we couldn't find a usable */
/* winsock.dll. */
return CURLE_FAILED_INIT;
@@ -125,7 +125,7 @@ static CURLcode win32_init(void)
if(LOBYTE(wsaData.wVersion) != LOBYTE(wVersionRequested) ||
HIBYTE(wsaData.wVersion) != HIBYTE(wVersionRequested) ) {
- /* Tell the user that we couldn't find a useable */
+ /* Tell the user that we couldn't find a usable */
/* winsock.dll. */
WSACleanup();