/* 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;
}
}
/* 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;
}