aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-11-18 16:31:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-11-18 16:31:27 +0000
commitbda9fde4d84f595482b8f45b2f5db3d9a18d4689 (patch)
treef84029af8ca5534307a6f3da86471e655ee9026a /lib
parent0def60bf9ddc8271d214faee48c6575fe000279f (diff)
spell correction resolv => resolve in two error messages
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/url.c b/lib/url.c
index 057e163a6..faaa99692 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -1190,7 +1190,7 @@ static CURLcode _connect(CURL *curl, CURLconnect **in_connect)
/* Connect to target host right on */
conn->hp = GetHost(data, conn->name, &conn->hostent_buf);
if(!conn->hp) {
- failf(data, "Couldn't resolv host '%s'", conn->name);
+ failf(data, "Couldn't resolve host '%s'", conn->name);
return CURLE_COULDNT_RESOLVE_HOST;
}
}
@@ -1246,7 +1246,7 @@ static CURLcode _connect(CURL *curl, CURLconnect **in_connect)
/* connect to proxy */
conn->hp = GetHost(data, proxyptr, &conn->hostent_buf);
if(!conn->hp) {
- failf(data, "Couldn't resolv proxy '%s'", proxyptr);
+ failf(data, "Couldn't resolve proxy '%s'", proxyptr);
return CURLE_COULDNT_RESOLVE_PROXY;
}