mirror of
https://github.com/curl/curl.git
synced 2026-08-26 22:34:45 +03:00
Fixed some typos in output messages.
This commit is contained in:
parent
5872e8dd7e
commit
6e87cf5b30
3 changed files with 8 additions and 8 deletions
|
|
@ -69,10 +69,10 @@ curl_easy_strerror(CURLcode error)
|
|||
return "URL using bad/illegal format or missing URL";
|
||||
|
||||
case CURLE_COULDNT_RESOLVE_PROXY:
|
||||
return "couldnt resolve proxy name";
|
||||
return "couldn't resolve proxy name";
|
||||
|
||||
case CURLE_COULDNT_RESOLVE_HOST:
|
||||
return "couldnt resolve host name";
|
||||
return "couldn't resolve host name";
|
||||
|
||||
case CURLE_COULDNT_CONNECT:
|
||||
return "couldn't connect to server";
|
||||
|
|
@ -492,7 +492,7 @@ get_winsock_error (int err, char *buf, size_t len)
|
|||
p = "Winsock library is not ready";
|
||||
break;
|
||||
case WSANOTINITIALISED:
|
||||
p = "Winsock library not initalised";
|
||||
p = "Winsock library not initialised";
|
||||
break;
|
||||
case WSAVERNOTSUPPORTED:
|
||||
p = "Winsock version not supported.";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue