summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-21 12:11:45 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-21 12:11:45 +0000
commit39d4552dab1f8238a1e1cd2387fabafb2331e6cd (patch)
tree9f044abea744e29dd41537579be5193f25899ba6
parenta23c63738f7542dda02e8907adb2109cf4220831 (diff)
downloadgnurl-39d4552dab1f8238a1e1cd2387fabafb2331e6cd.tar.gz
gnurl-39d4552dab1f8238a1e1cd2387fabafb2331e6cd.tar.bz2
gnurl-39d4552dab1f8238a1e1cd2387fabafb2331e6cd.zip
pre4
-rw-r--r--CHANGES6
-rw-r--r--docs/TODO4
-rw-r--r--include/curl/curl.h2
-rw-r--r--src/version.h2
4 files changed, 12 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 1b735bac3..5c411cfd8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,12 @@
History of Changes
+Daniel (19 January 2002)
+- Antonio filed bug report #505514 and provided a fix! When doing multipart
+ formposts, libcurl would include an error text in the actual post if a
+ specified file wasn't found. This is not libcurl's job. Instead we add an
+ empty part.
+
Daniel (18 January 2002)
- Played around with stricter compiler warnings for gcc (when ./configure
--enable-debug is used) and changed some minor things to stop the warnings.
diff --git a/docs/TODO b/docs/TODO
index bfa7aa067..3597ab5bd 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -48,6 +48,10 @@ TODO
* Set the SO_KEEPALIVE socket option to make libcurl notice and disconnect
very long time idle connections.
+ * Make sure we don't ever loop because of non-blocking sockets return
+ EWOULDBLOCK or similar. This concerns the HTTP request sending, the FTP
+ command sending etc.
+
DOCUMENTATION
* Document all CURLcode error codes, why they happen and what most likely
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 2e948d8a8..f791ca70c 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -613,7 +613,7 @@ CURLcode curl_global_init(long flags);
void curl_global_cleanup(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.9.3-pre3"
+#define LIBCURL_VERSION "7.9.3-pre4"
#define LIBCURL_VERSION_NUM 0x070903
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
diff --git a/src/version.h b/src/version.h
index 1639fa84b..6fd7991ea 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
#define CURL_NAME "curl"
-#define CURL_VERSION "7.9.3-pre3"
+#define CURL_VERSION "7.9.3-pre4"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "