mirror of
https://github.com/curl/curl.git
synced 2026-06-01 19:44:16 +03:00
url.c: use consistent error message for failed resolve
This commit is contained in:
parent
e72270236c
commit
6174fc993a
1 changed files with 1 additions and 1 deletions
|
|
@ -3344,7 +3344,7 @@ static CURLcode resolve_server(struct Curl_easy *data,
|
|||
result = CURLE_OPERATION_TIMEDOUT;
|
||||
|
||||
else if(!hostaddr) {
|
||||
failf(data, "Couldn't resolve host '%s'", connhost->dispname);
|
||||
failf(data, "Could not resolve host: %s", connhost->dispname);
|
||||
result = CURLE_COULDNT_RESOLVE_HOST;
|
||||
/* don't return yet, we need to clean up the timeout first */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue