mirror of
https://github.com/curl/curl.git
synced 2026-08-26 01:53:31 +03:00
6.5.2 release commit
This commit is contained in:
parent
a2d2569c7d
commit
475869a612
7 changed files with 708 additions and 634 deletions
1321
src/hugehelp.c
1321
src/hugehelp.c
File diff suppressed because it is too large
Load diff
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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 ") "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue