Skip to content
Snippets Groups Projects
Commit 37c7a695 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so that

the others remain at previous values.
parent 07f107ae
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment