diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-11-18 21:58:46 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-11-18 21:58:46 +0000 |
commit | 255b1e68d07355e08210ef57c511bbd9d7d9739e (patch) | |
tree | 25f66a99d8dd97f4cf5a429645831eafe4350997 /include | |
parent | fbee6b87f5ed86d80895495367fbe3729e8f1571 (diff) |
as requested, CURLE_OPERATION_TIMEDOUT is now the same as
CURLE_OPERATION_TIMEOUTED
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index eef89cc4c..5c042ae5b 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -205,6 +205,9 @@ typedef enum { CURL_LAST /* never use! */ } CURLcode; +/* Make a spelling correction for the operation timed-out define */ +#define CURLE_OPERATION_TIMEDOUT CURLE_OPERATION_TIMEOUTED + typedef enum { CURLPROXY_HTTP = 0, CURLPROXY_SOCKS4 = 4, @@ -800,7 +803,7 @@ CURLcode curl_global_init(long flags); void curl_global_cleanup(void); /* This is the version number */ -#define LIBCURL_VERSION "7.10.2-test" +#define LIBCURL_VERSION "7.10.2-pre4" #define LIBCURL_VERSION_NUM 0x070a02 /* linked-list structure for the CURLOPT_QUOTE option (and other) */ |