From: Daniel Stenberg Date: Sat, 11 Dec 2004 18:55:23 +0000 (+0000) Subject: fixed error message X-Git-Tag: curl-7_12_3~76 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bd2db872376bc8e9c9bce24dfad490850c775cb6;p=thirdparty%2Fcurl.git fixed error message --- diff --git a/lib/strerror.c b/lib/strerror.c index cc7454c7e7..10cc80453f 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -152,8 +152,8 @@ curl_easy_strerror(CURLcode error) case CURLE_SSL_CONNECT_ERROR: return "SSL connect error"; - case CURLE_FTP_BAD_DOWNLOAD_RESUME: - return "couldn't resume FTP download"; + case CURLE_BAD_DOWNLOAD_RESUME: + return "couldn't resume download"; case CURLE_FILE_COULDNT_READ_FILE: return "couldn't read a file:// file";