aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-16 14:45:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-16 14:45:50 +0000
commitbb51c20c8b2262b6cc6ae332b83a3fcf52f302e0 (patch)
treeea48cf563c56938e761385fd32f446ce20f63ce3 /include
parenta84af986fdcad52d5691dbf3f9b3ee153128e822 (diff)
Added #define CURLE_ALREADY_COMPLETE to not break compiles that use that
symbol, but libcurl will not return this ever
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 6a2a20c1f..7c916185e 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -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 {