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

Added #define CURLE_ALREADY_COMPLETE to not break compiles that use that

symbol, but libcurl will not return this ever
parent a84af986
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,11 @@ typedef enum {
CURL_LAST /* never use! */
} CURLcode;
/* this was the error code 50 in 7.7.3 and a few earlier versions, this
is no longer used by libcurl but is instead #defined here only to not
make programs break */
#define CURLE_ALREADY_COMPLETE 99999
/* This is just to make older programs not break: */
#define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE
......@@ -488,8 +493,8 @@ char *curl_escape(char *string, int length);
char *curl_unescape(char *string, int length);
/* This is the version number */
#define LIBCURL_VERSION "7.7.3"
#define LIBCURL_VERSION_NUM 0x070703
#define LIBCURL_VERSION "7.7.4-pre1"
#define LIBCURL_VERSION_NUM 0x070704
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
struct curl_slist {
......
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