cbd3fd7c | 24-Feb-2023 |
Daniel Stenberg |
telnet: error correctly for WS set to "x[num]" Follow-up to e4f93be9d587 Reported-by: Harry Sintonen Closes #10606 |
5ed7417d | 24-Feb-2023 |
Daniel Stenberg |
krb5: avoid sscanf for parsing Closes #10599 |
83568266 | 23-Feb-2023 |
Daniel Stenberg |
misc: remove support for curl_off_t < 8 bytes Closes #10597 |
9672cc64 | 23-Feb-2023 |
Daniel Stenberg |
telnet: parse NEW_ENVIRON without sscanf Closes #10596 |
e4f93be9 | 23-Feb-2023 |
Daniel Stenberg |
telnet: parse the WS= argument without sscanf Closes #10596 |
0c28ba2f | 23-Feb-2023 |
Daniel Stenberg |
telnet: parse telnet options without sscanf Closes #10596 |
304b5183 | 23-Feb-2023 |
Daniel Stenberg |
ftp: replace sscanf for MDTM 213 response parsing Closes #10590 |
dad74488 | 23-Feb-2023 |
Daniel Stenberg |
ftp: replace sscanf for PASV parsing Closes #10590 |
b0f54f27 | 22-Feb-2023 |
Daniel Stenberg |
ftp: make the EPSV response parser not use sscanf Closes #10590 |
f6fe54e2 | 23-Feb-2023 |
Stefan Eissing |
ngtcp2: fix unwanted close of file descriptor 0 ... causing macOS to hand out 0 as next socket handle and failing on further operations. Reported-by: Sergey Fionov Fixes #10
ngtcp2: fix unwanted close of file descriptor 0 ... causing macOS to hand out 0 as next socket handle and failing on further operations. Reported-by: Sergey Fionov Fixes #10593 Closes #10595
show more ...
|
0242eba0 | 23-Feb-2023 |
Daniel Stenberg |
select: stop treating POLLRDBAND as an error POLLRDBAND does not seem to be an general error and on Windows the value for POLLIN is 768 and the value for POLLRDBAND is 512. Fixe
select: stop treating POLLRDBAND as an error POLLRDBAND does not seem to be an general error and on Windows the value for POLLIN is 768 and the value for POLLRDBAND is 512. Fixes #10501 Reported-by: opensslonzos-github on github Closes #10592
show more ...
|
5da5684c | 23-Feb-2023 |
Daniel Stenberg |
test978: mark file as text mode Follow-up to 4ea5702980cb To fix test failures on Windows Closes #10594 |
b2151fbc | 21-Feb-2023 |
Daniel Stenberg |
http: rewrite the status line parser without sscanf Closes #10585 |
4ea57029 | 20-Feb-2023 |
Daniel Stenberg |
test978: verify that --stderr works for -w's stderr as well |
d9b7f6e7 | 20-Feb-2023 |
Jay Satiro |
curl: make -w's %{stderr} use the file set with --stderr Reported-by: u20221022 on github Fixes #10491 Closes #10569 |
80b7f05b | 21-Feb-2023 |
Jay Satiro |
winbuild: fix makefile clean - Fix and move 'clean' code that removes the output and obj directories trees from MakefileBuild.vc to Makefile.vc. Prior to this change the 'clea
winbuild: fix makefile clean - Fix and move 'clean' code that removes the output and obj directories trees from MakefileBuild.vc to Makefile.vc. Prior to this change the 'clean' code did not work right because the variables containing the directory names were not fully initialized and the rmdir syntax was sometimes incorrect (typos). DIRDIST for example was set to ..\builds\ and not ..\builds\$(CONFIG_NAME_LIB)\ so it would remove the former and not the latter. If WITH_PREFIX was set then that directory was removed instead. Also, DIRDIST (the output directory) even if initialized should not be removed by MakefileBuild.vc because by that time it could be set to a user directory that may contain other files if WITH_PREFIX is set (eg we don't want rmdir /s /q C:\usr\local). Therefore we remove from Makefile.vc before any of that happens. I added a comment in both makefiles explaining this. Closes https://github.com/curl/curl/pull/10576
show more ...
|
47129b2b | 21-Feb-2023 |
Jay Satiro |
sectransp: fix compiler warning c89 mixed code/declaration Since cbf57176 the Cirrus CI 'macOS arm64 SecureTransport http2' has been failing due to c89 warnings mixed code/declaration. T
sectransp: fix compiler warning c89 mixed code/declaration Since cbf57176 the Cirrus CI 'macOS arm64 SecureTransport http2' has been failing due to c89 warnings mixed code/declaration. That commit is not the cause so I assume something has changed in the CI outside of our configuration. Anyway, we don't mix code/declaration so this is the fix for that. Closes https://github.com/curl/curl/pull/10574
show more ...
|
c52f7a89 | 22-Feb-2023 |
Philipp Engel |
BINDINGS: add Fortran binding Closes #10589 |
463158bf | 17-Feb-2023 |
Stefan Eissing |
test2600: detect when ALARM_TIMEOUT is in use and adjust - use higher timeout values > 1s - skip duration checks Assisted-by: Marcel Raad Closes #10513 |
3cb03e9f | 22-Feb-2023 |
Daniel Stenberg |
RELEASE-NOTES: synced |
0338eb85 | 21-Feb-2023 |
Daniel Stenberg |
test686: verify return code for no URL after --next |
60e13311 | 21-Feb-2023 |
Daniel Stenberg |
tool_operate: propagate error codes for missing URL after --next Fixes #10558 Reported-by: u20221022 on github Closes #10580 |
2e3da515 | 21-Feb-2023 |
Daniel Stenberg |
test1278: verify that an extra --no-remote-name cause no warning |
780ff2c9 | 21-Feb-2023 |
Daniel Stenberg |
tool_getparam: don't add a new node for just --no-remote-name Unless --remote-name-all is used. Fixes #10564 Reported-by: u20221022 on github Closes #10582 |
ddff8ef7 | 21-Feb-2023 |
Daniel Stenberg |
gen.pl: add '%GLOBALS' as a variable for mainpage And use it in page-header to list all global command line options. |