From: Daniel Stenberg Date: Tue, 14 Dec 2004 09:58:45 +0000 (+0000) Subject: Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so that X-Git-Tag: upstream/7.37.1~11778 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37c7a695a204f4c59c99cac7eaf86a66514663bc;p=platform%2Fupstream%2Fcurl.git Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so that the others remain at previous values. --- diff --git a/include/curl/curl.h b/include/curl/curl.h index 589e523..5e86543 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;