diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-11-24 18:25:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-11-24 18:25:33 +0000 |
commit | 7b3fba1ad5bbfd7c6466aa54dc1a601e124d225c (patch) | |
tree | dab2f7c5b87408f0b7070117ae51aafc88f9387f /lib | |
parent | 700e3b685af930a724634de3488236ef2e2d2bf1 (diff) |
added missing new error string
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strerror.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/strerror.c b/lib/strerror.c index d8e085880..cc7454c7e 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -230,6 +230,9 @@ curl_easy_strerror(CURLcode error) case CURLE_FTP_SSL_FAILED: return "Requested FTP SSL level failed"; + case CURLE_SEND_FAIL_REWIND: + return "Send failed since rewinding of the data stream failed"; + case CURLE_URL_MALFORMAT_USER: /* not used by current libcurl */ case CURLE_MALFORMAT_USER: /* not used by current libcurl */ case CURLE_BAD_CALLING_ORDER: /* not used by current libcurl */ |