648712ee | 01-Jan-2021 |
Daniel Stenberg |
httpauth: make multi-request auth work with custom port When doing HTTP authentication and a port number set with CURLOPT_PORT, the code would previously have the URL's port number overr
httpauth: make multi-request auth work with custom port When doing HTTP authentication and a port number set with CURLOPT_PORT, the code would previously have the URL's port number override as if it had been a redirect to an absolute URL. Added test 1568 to verify. Reported-by: UrsusArctos on github Fixes #6397 Closes #6400
show more ...
|
725ec470 | 31-Dec-2020 |
Emil Engler |
language: s/behaviour/behavior/g We currently use both spellings the british "behaviour" and the american "behavior". However "behavior" is more used in the project so I think it's w
language: s/behaviour/behavior/g We currently use both spellings the british "behaviour" and the american "behavior". However "behavior" is more used in the project so I think it's worth dropping the british name. Closes #6395
show more ...
|
aa717506 | 02-Jan-2021 |
Daniel Stenberg |
cmdline-opts/retry.d: mention response code 429 as well Reported-by: Cherish98 Bug: https://curl.se/mail/archive-2020-12/0018.html |
9e4b7aa7 | 02-Jan-2021 |
Daniel Stenberg |
docs/HYPER.md: mention outstanding issues To make it more obvious to users what doesn't work (yet) Closes #6389 |
275c28e6 | 31-Dec-2020 |
Daniel Stenberg |
COPYING/configure: bump copyright year range |
fce91213 | 31-Dec-2020 |
Daniel Stenberg |
c-hyper: add timecondition to the request Test 77-78 Closes #6391 |
3c7483ef | 30-Dec-2020 |
Daniel Stenberg |
c-hyper: make Digest and NTLM work Test 64, 65, 67, 68, 69, 70, 72 Closes #6390 |
2855997a | 30-Dec-2020 |
Daniel Stenberg |
examples/curlgtk.c: fix the copyright year range ... and make private functions static. |
f2ed79d8 | 30-Dec-2020 |
Olaf Hering |
docs/examples: adjust prototypes for CURLOPT_READFUNCTION The type of the buffer in curl_read_callback is 'char *', not 'void *'. Signed-off-by: Olaf Hering <olaf@aepfle.de> Clo
docs/examples: adjust prototypes for CURLOPT_READFUNCTION The type of the buffer in curl_read_callback is 'char *', not 'void *'. Signed-off-by: Olaf Hering <olaf@aepfle.de> Closes #6392
show more ...
|
0a5b8af7 | 30-Dec-2020 |
Daniel Stenberg |
examples: fix more empty expression statement has no effect Follow-up to 26e46617b9 |
a6d20b89 | 30-Dec-2020 |
Daniel Stenberg |
cleanup: fix two empty expression statement has no effect Follow-up to 26e46617b9 |
26e46617 | 26-Dec-2020 |
Daniel Stenberg |
configure: set -Wextra-semi-stmt for clang with --enable-debug To have it properly complain on empty statements with no effect. Ref: #6376 Closes #6378 |
b9746575 | 29-Dec-2020 |
Daniel Stenberg |
tests/unit: fix empty statements with no effect ... by making macros use "do {} while(0)" |
8324dc8b | 10-Dec-2020 |
Paul Groke |
dns: extend CURLOPT_RESOLVE syntax for adding non-permanent entries Extend the syntax of CURLOPT_RESOLVE strings: allow using a '+' prefix (similar to the existing '-' prefix for removin
dns: extend CURLOPT_RESOLVE syntax for adding non-permanent entries Extend the syntax of CURLOPT_RESOLVE strings: allow using a '+' prefix (similar to the existing '-' prefix for removing entries) to add DNS cache entries that will time out just like entries that are added by libcurl itself. Append " (non-permanent)" to info log message in case a non-permanent entry is added. Adjust relevant comments to reflect the new behavior. Adjust documentation. Extend unit1607 to test the new functionality. Closes #6294
show more ...
|
68dde8e3 | 27-Dec-2020 |
Daniel Stenberg |
schannel: fix "empty expression statement has no effect" Bug: https://github.com/curl/curl/commit/8ab78f720ae478d533e30b202baec4b451741579#commitcomment-45445950 Reported-by: Gisle Vanem
schannel: fix "empty expression statement has no effect" Bug: https://github.com/curl/curl/commit/8ab78f720ae478d533e30b202baec4b451741579#commitcomment-45445950 Reported-by: Gisle Vanem Closes #6381
show more ...
|
dc7bd62c | 29-Dec-2020 |
Denis Laxalde |
docs: remove redundant "better" in --fail help Closes #6385 |
0be8818f | 27-Dec-2020 |
Kevin Ushey |
curl.1: fix typo microsft -> microsoft Closes #6380 |
aadc7562 | 25-Dec-2020 |
XhmikosR |
misc: assorted typo fixes Closes #6375 |
334f85b3 | 26-Dec-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced |
e6c5613e | 26-Dec-2020 |
Daniel Stenberg |
tool_operate: avoid NULL dereference of first_arg Follow-up to 6a5e020d4d2b04a Identified by OSS-Fuzz Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=28999 Closes #6377 |
8ab78f72 | 26-Dec-2020 |
Daniel Stenberg |
misc: fix "warning: empty expression statement has no effect" Turned several macros into do-while(0) style to allow their use to work find with semicolon. Bug: https://github.co
misc: fix "warning: empty expression statement has no effect" Turned several macros into do-while(0) style to allow their use to work find with semicolon. Bug: https://github.com/curl/curl/commit/08e8455dddc5e48e58a12ade3815c01ae3da3b64#commitcomment-45433279 Follow-up to 08e8455dddc5e4 Reported-by: Gisle Vanem Closes #6376
show more ...
|
ec424f31 | 25-Dec-2020 |
Daniel Stenberg |
KNOWN_BUGS: 6.10 curl never completes Negotiate over HTTP Closes #5235 Closes #6370 |
44a504e5 | 25-Dec-2020 |
Daniel Stenberg |
writeout: fix NULL dereference for "this url" Detected by torture test 1029 Follow-up to 7a90ddf88f5a Closes #6374 |
aba01da6 | 23-Dec-2020 |
Daniel Stenberg |
failf: remove newline from formatting strings ... as failf adds one itself. Also: add an assert() to failf() that triggers on a newline in the format string! Closes #63
failf: remove newline from formatting strings ... as failf adds one itself. Also: add an assert() to failf() that triggers on a newline in the format string! Closes #6365
show more ...
|
78617b48 | 25-Dec-2020 |
XhmikosR |
CI: fix warning with the latest versions `git checkout HEAD^2` is no longer needed Closes #6369 |