aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-12 09:37:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-12 09:37:51 +0000
commite0f56897d5ed89d089c0a08ed9b8a3e7c1ad5d08 (patch)
tree272a52c159c8f818799097402348132e8b8a52e2 /include
parentc7dbde9f3f0a3dd8e3b04106c2d8dba90d89c994 (diff)
CURLE_ALREADY_COMPLETE is removed
CURLE_SSL_PEER_CERTIFICATE is added
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 8dc8cd7ec..6a2a20c1f 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -146,7 +146,8 @@ typedef enum {
CURLE_TOO_MANY_REDIRECTS , /* 47 - catch endless re-direct loops */
CURLE_UNKNOWN_TELNET_OPTION, /* 48 - User specified an unknown option */
CURLE_TELNET_OPTION_SYNTAX , /* 49 - Malformed telnet option */
- CURLE_ALREADY_COMPLETE, /* 50 - file to dowload is already complete */
+ CURLE_OBSOLETE, /* 50 - removed after 7.7.3 */
+ CURLE_SSL_PEER_CERTIFICATE, /* 51 - peer's certificate wasn't ok */
CURL_LAST /* never use! */
} CURLcode;