aboutsummaryrefslogtreecommitdiff
path: root/include/curl/curl.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-12-14 09:58:45 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-12-14 09:58:45 +0000
commit37c7a695a204f4c59c99cac7eaf86a66514663bc (patch)
tree4c8fc98e781a5ef9ed374ea37301ff2b3004cccb /include/curl/curl.h
parent07f107ae20f60247e716a814ec7bafbda9df945a (diff)
Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so that
the others remain at previous values.
Diffstat (limited to 'include/curl/curl.h')
-rw-r--r--include/curl/curl.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 589e5230e..5e86543e9 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -292,19 +292,19 @@ typedef enum {
CURLE_SSL_ENGINE_NOTFOUND, /* 53 - SSL crypto engine not found */
CURLE_SSL_ENGINE_SETFAILED, /* 54 - can not set SSL crypto engine as
default */
- CURLE_SSL_ENGINE_INITFAILED, /* 55 - failed to initialise ENGINE */
- CURLE_SEND_ERROR, /* 56 - failed sending network data */
- CURLE_RECV_ERROR, /* 57 - failure in receiving network data */
- CURLE_SHARE_IN_USE, /* 58 - share is in use */
- CURLE_SSL_CERTPROBLEM, /* 59 - problem with the local certificate */
- CURLE_SSL_CIPHER, /* 60 - couldn't use specified cipher */
- CURLE_SSL_CACERT, /* 61 - problem with the CA cert (path?) */
- CURLE_BAD_CONTENT_ENCODING, /* 62 - Unrecognized transfer encoding */
- CURLE_LDAP_INVALID_URL, /* 63 - Invalid LDAP URL */
- CURLE_FILESIZE_EXCEEDED, /* 64 - Maximum file size exceeded */
- CURLE_FTP_SSL_FAILED, /* 65 - Requested FTP SSL level failed */
- CURLE_SEND_FAIL_REWIND, /* 66 - Sending the data requires a rewind
+ CURLE_SEND_ERROR, /* 55 - failed sending network data */
+ CURLE_RECV_ERROR, /* 56 - failure in receiving network data */
+ CURLE_SHARE_IN_USE, /* 57 - share is in use */
+ CURLE_SSL_CERTPROBLEM, /* 58 - problem with the local certificate */
+ CURLE_SSL_CIPHER, /* 59 - couldn't use specified cipher */
+ CURLE_SSL_CACERT, /* 60 - problem with the CA cert (path?) */
+ CURLE_BAD_CONTENT_ENCODING, /* 61 - Unrecognized transfer encoding */
+ CURLE_LDAP_INVALID_URL, /* 62 - Invalid LDAP URL */
+ CURLE_FILESIZE_EXCEEDED, /* 63 - Maximum file size exceeded */
+ CURLE_FTP_SSL_FAILED, /* 64 - Requested FTP SSL level failed */
+ CURLE_SEND_FAIL_REWIND, /* 65 - Sending the data requires a rewind
that failed */
+ CURLE_SSL_ENGINE_INITFAILED, /* 66 - failed to initialise ENGINE */
CURL_LAST /* never use! */
} CURLcode;