aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-12-04 09:09:26 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-12-04 09:09:26 +0000
commit7ef749497d5abbee926200d744dfc27cb4e030f8 (patch)
tree056024b2462420a7d515ae679c066f37d4505c9a
parentd72aa491264325e9b6b35a9bf83e95d7a4188abd (diff)
7.10.3-pre2
-rw-r--r--CHANGES29
-rw-r--r--include/curl/curl.h4
-rw-r--r--src/version.h2
3 files changed, 32 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 9a8ed6b06..7490ce309 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,35 @@
Changelog
+Version 7.10.3-pre2 (4 Dec 2002)
+
+Daniel (4 Dec 2002)
+- Lots of work with Malcolm Dodds made me add a temporary code fix that now
+ shortens the timeout waiting for the 226 or 250 line after a completed
+ FTP transfer.
+
+ If no data is received within 60 seconds, this is taken as a sign of a dead
+ control connection and we bail out.
+
+Daniel (3 Dec 2002)
+- Ralph's bug report #644841 identified a problem in which curl returned a
+ timeout error code when in fact the problem was not a timeout. The proper
+ error should now be propagated better when they're detected in the FTP
+ response reading function.
+
+- Updated the Borland Makefiles.
+
+Daniel (2 Dec 2002)
+- Nicolas Berloquin provided a patch that introduced --create-dirs to the
+ command line tool. When used in combination with -o, it lets curl create
+ [non-existing] directories used in -o, suitably used with #-combinations
+ such as:
+
+ curl "www.images.com/{flowers,cities,parks,mountains}/pic_[1-100].jpg \
+ -o "dir_#1/pic#2.jpg" --create-dirs
+
+Version 7.10.3-pre1
+
Daniel (28 Nov 2002)
- I visited Lars Nordgren and had a go with his problem, which lead me to
implement this fix. If libcurl detects the added custom header
diff --git a/include/curl/curl.h b/include/curl/curl.h
index bf7b4852d..ddf941a76 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -805,8 +805,8 @@ CURLcode curl_global_init(long flags);
void curl_global_cleanup(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.10.2"
-#define LIBCURL_VERSION_NUM 0x070a02
+#define LIBCURL_VERSION "7.10.3-pre2"
+#define LIBCURL_VERSION_NUM 0x070a03
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
struct curl_slist {
diff --git a/src/version.h b/src/version.h
index b4f4303e3..ff45d1af9 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
#define CURL_NAME "curl"
-#define CURL_VERSION "7.10.2"
+#define CURL_VERSION "7.10.3-pre2"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "