6.5.2 release commit

This commit is contained in:
Daniel Stenberg 2000-03-21 15:37:13 +00:00
parent a2d2569c7d
commit 475869a612
7 changed files with 708 additions and 634 deletions

File diff suppressed because it is too large Load diff

View file

@ -1153,7 +1153,7 @@ int main(int argc, char *argv[])
URGTAG_CRLF, config.crlf,
URGTAG_QUOTE, config.quote,
URGTAG_POSTQUOTE, config.postquote,
URGTAG_WRITEHEADER, &heads,
URGTAG_WRITEHEADER, config.headerfile?&heads:NULL,
URGTAG_COOKIEFILE, config.cookiefile,
URGTAG_SSLVERSION, config.ssl_version,
URGTAG_TIMECONDITION, config.timecond,
@ -1171,7 +1171,7 @@ int main(int argc, char *argv[])
/* it wasn't directed to stdout or stderr so close the file! */
fclose(config.errors);
if(!headerfilep && heads.stream)
if(config.headerfile && !headerfilep && heads.stream)
fclose(heads.stream);
if(urlbuffer)

View file

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