9a47d771 | 17-Jul-2021 |
MAntoniak <47522782+MAntoniak@users.noreply.github.com> |
lib: fix compiler warnings with CURL_DISABLE_NETRC warning C4189: 'netrc_user_changed': local variable is initialized but not referenced warning C4189: 'netrc_passwd_changed': l
lib: fix compiler warnings with CURL_DISABLE_NETRC warning C4189: 'netrc_user_changed': local variable is initialized but not referenced warning C4189: 'netrc_passwd_changed': local variable is initialized but not referenced Closes #7423
show more ...
|
d896184c | 18-Jul-2021 |
Daniel Stenberg |
disable-epsv.d: remove duplicate "(FTP)" ... since the tooling adds that to the output based on the "Protocols:" tag. |
eaab3f08 | 18-Jul-2021 |
Max Zettlmeißl |
docs: make the documentation for --etag-save match the program behaviour When using curl with the option `--etag-save` I expected it to save the ETag without its surrounding quotes, as s
docs: make the documentation for --etag-save match the program behaviour When using curl with the option `--etag-save` I expected it to save the ETag without its surrounding quotes, as stated by the documentation in the repository and by the generated man pages. My first endeavour was to fix the program, but while investigating the history of the relevant parts, I discovered that curl once saved the ETag without the quotes. This was undone by Daniel Stenberg in commit `98c94596f5928840177b6bd3c7b0f0dd03a431af`, therefore I decided that in this case the documentation should be adjusted to match the behaviour of curl. The changed save behaviour also made parts of the `--etag-compare` documentation wrong or superfluous, so I adjusted those accordingly. Closes #7429
show more ...
|
069dd3d2 | 16-Jul-2021 |
Josh Soref <2119212+jsoref@users.noreply.github.com> |
write-out.d: add missing periods Closes #7404 |
c12ad2d4 | 13-Jul-2021 |
Josie Huddleston |
easy: during upkeep, attach Curl_easy to connections in the cache During the protocol-specific parts of connection upkeep, some code assumes that the data->conn pointer already is set co
easy: during upkeep, attach Curl_easy to connections in the cache During the protocol-specific parts of connection upkeep, some code assumes that the data->conn pointer already is set correctly. However, there's currently no guarantee of that in the code. This fix temporarily attaches each connection to the Curl_easy object before performing the protocol-specific connection check on it, in a similar manner to the connection checking in extract_if_dead(). Fixes #7386 Closes #7387 Reported-by: Josie Huddleston
show more ...
|
de1004eb | 16-Jul-2021 |
Josh Soref |
cleanup: spell DoH with a lowercase o Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Closes #7413 |
b463c109 | 16-Jul-2021 |
Josh Soref <2119212+jsoref@users.noreply.github.com> |
TheArtOfHttpScripting: polish - add missing backticks and comma - fix proxy description: * example proxy isn't local * locally doesn't really make sense Closes
TheArtOfHttpScripting: polish - add missing backticks and comma - fix proxy description: * example proxy isn't local * locally doesn't really make sense Closes #7416
show more ...
|
04ce9e85 | 16-Jul-2021 |
Josh Soref <2119212+jsoref@users.noreply.github.com> |
form.d: add examples of `,`/`;` for file[name] Fixes #7415 Closes #7417 |
d84fb306 | 16-Jul-2021 |
MAntoniak <47522782+MAntoniak@users.noreply.github.com> |
mbedtls: Remove unnecessary include - curl_setup.h: all references to mbedtls_md4* functions and structures are in the md4.c. This file already includes the <mbedtls/md4.h> file
mbedtls: Remove unnecessary include - curl_setup.h: all references to mbedtls_md4* functions and structures are in the md4.c. This file already includes the <mbedtls/md4.h> file along with the file existence control (defined (MBEDTLS_MD4_C)) - curl_ntlm_core.c: unnecessary include - repeated below Closes #7419
show more ...
|
30f9ce23 | 16-Jul-2021 |
Daniel Stenberg |
RELEASE-NOTES: synced |
6a66f728 | 13-Jul-2021 |
User Sg |
multi: fix crash in curl_multi_wait / curl_multi_poll Appears to have been caused by 51c0ebc (precedes 7.77.0) which added a VALID_SOCK check to one of the loops through the sockets but
multi: fix crash in curl_multi_wait / curl_multi_poll Appears to have been caused by 51c0ebc (precedes 7.77.0) which added a VALID_SOCK check to one of the loops through the sockets but not the other. Reported-by: sylgal@users.noreply.github.com Authored-by: sylgal@users.noreply.github.com Fixes https://github.com/curl/curl/issues/7379 Closes https://github.com/curl/curl/pull/7389
show more ...
|
b45d6e2c | 12-Jul-2021 |
Daniel Gustafsson |
tool_help: remove unused define The PRINT_LINES_PAUSE macro is no longer used, and has been mostly cleaned out but one occurrence remained. Closes https://github.com/curl/curl/p
tool_help: remove unused define The PRINT_LINES_PAUSE macro is no longer used, and has been mostly cleaned out but one occurrence remained. Closes https://github.com/curl/curl/pull/7380
show more ...
|
e919848e | 11-Jul-2021 |
Sergey Markelov |
build: fix compiler warnings when CURL_DISABLE_VERBOSE_STRINGS fix compiler warnings about unused variables and parameters when built with --disable-verbose. Closes https://gith
build: fix compiler warnings when CURL_DISABLE_VERBOSE_STRINGS fix compiler warnings about unused variables and parameters when built with --disable-verbose. Closes https://github.com/curl/curl/pull/7377
show more ...
|
af1ee130 | 10-Jul-2021 |
Andrea Pappacoda |
build: fix IoctlSocket FIONBIO check Prior to this change HAVE_IOCTLSOCKET_CAMEL_FIONBIO mistakenly checked for (lowercase) ioctlsocket when it should have checked for IoctlSocket.
build: fix IoctlSocket FIONBIO check Prior to this change HAVE_IOCTLSOCKET_CAMEL_FIONBIO mistakenly checked for (lowercase) ioctlsocket when it should have checked for IoctlSocket. Closes https://github.com/curl/curl/pull/7375
show more ...
|
29c7cf79 | 08-Jul-2021 |
t.artikov |
configure: fix nghttp2 library name for static builds Don't hardcode the nghttp2 library name, because it can vary, be "nghttp2_static" for example. Fixes https://github.com/cur
configure: fix nghttp2 library name for static builds Don't hardcode the nghttp2 library name, because it can vary, be "nghttp2_static" for example. Fixes https://github.com/curl/curl/issues/7367 Closes https://github.com/curl/curl/pull/7368
show more ...
|
bc035f5c | 15-Jul-2021 |
Gisle Vanem |
[PellesC] fix _lseeki64() macro |
c6fd7cbf | 15-Jul-2021 |
Gisle Vanem |
[SChannel] Use '_tcsncmp()' instead Revert previous change for PellesC. Instead replace all use of `_tcsnccmp()` with `_tcsncmp()`. |
3cd9a23e | 15-Jul-2021 |
Gisle Vanem |
[PellesC] missing '_tcsnccmp' PellesC compiler does not have this macro in it's `<tchar.h>` |
6c293cfc | 14-Jul-2021 |
Daniel Gustafsson |
TODO: add mention of mbedTLS 3 incompatibilities Wyatt OʼDay reported in #7385 that mbedTLS isn't backwards compatible and curl no longer builds with it. Document the need to fix our sup
TODO: add mention of mbedTLS 3 incompatibilities Wyatt OʼDay reported in #7385 that mbedTLS isn't backwards compatible and curl no longer builds with it. Document the need to fix our support until so has been done. Closes #7390 Fixes #7385 Reported-by: Wyatt OʼDay Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
show more ...
|
21ef78b5 | 14-Jul-2021 |
Daniel Gustafsson |
docs: fix inconsistencies in EGDSOCKET documentation Only the OpenSSL backend actually use the EGDSOCKET, and also use TLS consistently rather than mixing SSL and TLS. While there, also
docs: fix inconsistencies in EGDSOCKET documentation Only the OpenSSL backend actually use the EGDSOCKET, and also use TLS consistently rather than mixing SSL and TLS. While there, also fix a minor spelling nit. Closes: #7391 Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
show more ...
|
60dc3d1a | 13-Jul-2021 |
Борис Верховский |
docs: document missing arguments to commands This is a followup to commit f410b9e538129e77607fef1 fixing a few more commands which takes arguments. Closes #7382 Reviewed-by:
docs: document missing arguments to commands This is a followup to commit f410b9e538129e77607fef1 fixing a few more commands which takes arguments. Closes #7382 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
show more ...
|
0d9de0a0 | 13-Jul-2021 |
Randolf J <34705014+jun-sheaf@users.noreply.github.com> |
docs: fix incorrect argument name reference The documentation for the read callback was erroneously referencing the nitems argument by nmemb. The error was introduced in commit ce08
docs: fix incorrect argument name reference The documentation for the read callback was erroneously referencing the nitems argument by nmemb. The error was introduced in commit ce0881edee3c7. Closes #7383 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
show more ...
|
f410b9e5 | 11-Jul-2021 |
Борис Верховский |
tool_help: Document that --tlspassword takes a password Closes #7378 Reviewed-by: Daniel Stenberg <daniel@haxx.se> |
02dfce18 | 10-Jul-2021 |
Daniel Gustafsson |
scripts: Fix typo in release-notes instructions The command to run had a typo in the pathname which prevented copy pasting it to work, which has annoyed me enough to fix this now. |
2053c00d | 10-Jul-2021 |
Daniel Gustafsson |
RELEASE-NOTES: synced |