diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/connect.c | 4 | ||||
| -rw-r--r-- | lib/ftp.c | 6 | ||||
| -rw-r--r-- | lib/strerror.c | 6 | 
3 files changed, 8 insertions, 8 deletions
diff --git a/lib/connect.c b/lib/connect.c index 8799ba2df..50f6684b6 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -359,13 +359,13 @@ static CURLcode bindlocal(struct connectdata *conn,        } /* end of if  h */        else { -        failf(data,"could't find my own IP address (%s)", myhost); +        failf(data,"couldn't find my own IP address (%s)", myhost);          return CURLE_HTTP_PORT_FAILED;        }      } /* end of inet_addr */      else { -      failf(data, "could't find my own IP address (%s)", myhost); +      failf(data, "couldn't find my own IP address (%s)", myhost);        return CURLE_HTTP_PORT_FAILED;      } @@ -1110,7 +1110,7 @@ static CURLcode ftp_state_use_port(struct connectdata *conn,      }    }    else { -    failf(data, "could't find IP address to use"); +    failf(data, "couldn't find IP address to use");      return CURLE_FTP_PORT_FAILED;    } @@ -3170,7 +3170,7 @@ CURLcode ftp_perform(struct connectdata *conn,    *connected = conn->bits.tcpconnect;    if(*dophase_done) -    DEBUGF(infof(conn->data, "DO phase is comlete\n")); +    DEBUGF(infof(conn->data, "DO phase is complete\n"));    return result;  } @@ -3827,7 +3827,7 @@ CURLcode Curl_ftp_doing(struct connectdata *conn,    if(*dophase_done) {      result = ftp_dophase_done(conn, FALSE /* not connected */); -    DEBUGF(infof(conn->data, "DO phase is comlete\n")); +    DEBUGF(infof(conn->data, "DO phase is complete\n"));    }    return result;  } diff --git a/lib/strerror.c b/lib/strerror.c index 68e00cf2d..2d0b34270 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -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.";  | 
