1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

7.7.1 commit

This commit is contained in:
Daniel Stenberg 2001-04-04 06:23:43 +00:00
parent 6bd1ed034a
commit 50a53d4eec
3 changed files with 8 additions and 2 deletions

View File

@ -6,11 +6,17 @@
History of Changes History of Changes
Version 7.7.1
Daniel (3 April 2001) Daniel (3 April 2001)
- Puneet Pawaia pointed out two serious problems. Libcurl would attempt to - Puneet Pawaia pointed out two serious problems. Libcurl would attempt to
read bad memory during situations when an (ftp) connection attempt failed. read bad memory during situations when an (ftp) connection attempt failed.
Also, the lib/Makefile.vc6 was corrected. Also, the lib/Makefile.vc6 was corrected.
- More investigations in the Location: following code made me realize that
it was not clean enough to work transparantly with persistant and non-
persistant connections. I think I've fixed it now.
Daniel (29 March 2001) Daniel (29 March 2001)
- Georg Horn mailed me some corrections for the Curl::easy perl interface. - Georg Horn mailed me some corrections for the Curl::easy perl interface.

View File

@ -481,7 +481,7 @@ char *curl_escape(char *string, int length);
char *curl_unescape(char *string, int length); char *curl_unescape(char *string, int length);
/* This is the version number */ /* This is the version number */
#define LIBCURL_VERSION "7.7.1-beta1" #define LIBCURL_VERSION "7.7.1"
#define LIBCURL_VERSION_NUM 0x070701 #define LIBCURL_VERSION_NUM 0x070701
/* linked-list structure for the CURLOPT_QUOTE option (and other) */ /* linked-list structure for the CURLOPT_QUOTE option (and other) */

View File

@ -1,3 +1,3 @@
#define CURL_NAME "curl" #define CURL_NAME "curl"
#define CURL_VERSION "7.7" #define CURL_VERSION "7.7.1"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") " #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "