diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-04-12 22:09:18 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-04-18 19:46:21 +0200 |
commit | ebb37eac8ba8caca5282c41635e491f19fe7df48 (patch) | |
tree | 352ac94b66b221e5800b5021377173d7b0559ed4 /lib/strerror.c | |
parent | 9d191a6a40c2e90153d4b60cbc78fa34837c07ee (diff) | |
download | curl-ebb37eac8ba8caca5282c41635e491f19fe7df48.tar.gz |
CURLE_BAD_CONTENT_ENCODING: now used for transfer encoding too
Diffstat (limited to 'lib/strerror.c')
-rw-r--r-- | lib/strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strerror.c b/lib/strerror.c index 8144f78f0..59f2df5f7 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -211,7 +211,7 @@ curl_easy_strerror(CURLcode error) return "Problem with the SSL CA cert (path? access rights?)"; case CURLE_BAD_CONTENT_ENCODING: - return "Unrecognized HTTP Content-Encoding"; + return "Unrecognized or bad HTTP Content or Transfer-Encoding"; case CURLE_LDAP_INVALID_URL: return "Invalid LDAP URL"; |