b095a1ca | 17-Jan-2019 |
JDepooter |
ssh: log the libssh2 error message when ssh session startup fails When a ssh session startup fails, it is useful to know why it has failed. This commit changes the message from: "
ssh: log the libssh2 error message when ssh session startup fails When a ssh session startup fails, it is useful to know why it has failed. This commit changes the message from: "Failure establishing ssh session" to something like this, for example: "Failure establishing ssh session: -5, Unable to exchange encryption keys" Closes #3481
show more ...
|
7c16871d | 16-Jan-2019 |
Alessandro Ghedini |
Fix typo in manpage |
a0488342 | 16-Jan-2019 |
Daniel Stenberg |
RELEASE-NOTES: synced |
99c2e7e5 | 15-Jan-2019 |
Sergei Nikulov |
cmake: updated check for HAVE_POLL_FINE to match autotools |
26d7f009 | 16-Jan-2019 |
Daniel Stenberg |
curl-compilers.m4: check for __ibmxl__ to detect xlclang Follow-up to 2fa0d57e2e3. The __xlc__ symbol is only defined there if a particular flag is used for legacy macros. Fixes
curl-compilers.m4: check for __ibmxl__ to detect xlclang Follow-up to 2fa0d57e2e3. The __xlc__ symbol is only defined there if a particular flag is used for legacy macros. Fixes #3474 Closes #3479
show more ...
|
16a3307e | 15-Jan-2019 |
Daniel Stenberg |
openssl: fix the SSL_get_tlsext_status_ocsp_resp call .... to not pass in a const in the second argument as that's not how it is supposed to be used and might cause compiler warnings.
openssl: fix the SSL_get_tlsext_status_ocsp_resp call .... to not pass in a const in the second argument as that's not how it is supposed to be used and might cause compiler warnings. Reported-by: Pavel Pavlov Fixes #3477 Closes #3478
show more ...
|
2fa0d57e | 15-Jan-2019 |
Daniel Stenberg |
curl-compilers.m4: detect xlclang Since it isn't totally clang compatible, we detect this IBM clang front-end and if detected, avoids some clang specific magic. Reported-by: Kee
curl-compilers.m4: detect xlclang Since it isn't totally clang compatible, we detect this IBM clang front-end and if detected, avoids some clang specific magic. Reported-by: Kees Dekker Fixes #3474 Closes #3476
show more ...
|
304bce55 | 15-Jan-2019 |
Daniel Stenberg |
README: add codacy code quality badge [skip ci] |
bbae24c3 | 14-Jan-2019 |
Daniel Stenberg |
extract_if_dead: follow-up to 54b201b48c90a extract_if_dead() dead is called from two functions, and only one of them should get conn->data updated and now neither call path clears it.
extract_if_dead: follow-up to 54b201b48c90a extract_if_dead() dead is called from two functions, and only one of them should get conn->data updated and now neither call path clears it. scan-build found a case where conn->data would be NULL dereferenced in ConnectionExists() otherwise. Closes #3473
show more ...
|
fe71b2d9 | 14-Jan-2019 |
Daniel Stenberg |
multi: remove "Dead assignment" Found by scan-build. Follow-up to 4c35574bb785ce. Closes #3471 |
ea77fec1 | 14-Jan-2019 |
Daniel Stenberg |
tests: move objnames-* from lib into tests Since they're used purely for testing purposes, I think they should rather be stored there. Closes #3470 |
383fd9dc | 14-Jan-2019 |
Sergei Nikulov |
travis: added cmake build for osx |
c54ee668 | 14-Jan-2019 |
Frank Gevaerts |
cookie: fix comment typo (url_path_len -> uri_path_len) Closes #3469 |
07367e71 | 11-Jan-2019 |
Marcel Raad |
winbuild: conditionally use /DZLIB_WINAPI zlibwapi.lib (dynamic library) and zlibstat.lib (static library) have the ZLIB_WINAPI define set by default. Using them requires that define
winbuild: conditionally use /DZLIB_WINAPI zlibwapi.lib (dynamic library) and zlibstat.lib (static library) have the ZLIB_WINAPI define set by default. Using them requires that define too. Ref: https://zlib.net/DLL_FAQ.txt Fixes https://github.com/curl/curl/issues/3133 Closes https://github.com/curl/curl/pull/3460
show more ...
|
d8852d08 | 14-Jan-2019 |
Daniel Stenberg |
src/Makefile: make 'tidy' target work for metalink builds |
54b201b4 | 11-Jan-2019 |
Daniel Stenberg |
extract_if_dead: use a known working transfer when checking connections Make sure that this function sets a proper "live" transfer for the connection before calling the protocol-specific
extract_if_dead: use a known working transfer when checking connections Make sure that this function sets a proper "live" transfer for the connection before calling the protocol-specific connection check function, and then clear it again afterward as a non-used connection has no current transfer. Reported-by: Jeroen Ooms Reviewed-by: Marcel Raad Reviewed-by: Daniel Gustafsson Fixes #3463 Closes #3464
show more ...
|
cf8c7059 | 11-Jan-2019 |
Daniel Stenberg |
openssl: adapt to 3.0.0, OpenSSL_version_num() is deprecated OpenSSL_version() replaces OpenSSL_version_num() Closes #3462 |
52e27fe9 | 11-Jan-2019 |
Sergei Nikulov |
cmake: added checks for HAVE_VARIADIC_MACROS_C99 and HAVE_VARIADIC_MACROS_GCC |
ba243235 | 02-Jan-2019 |
Daniel Stenberg |
urldata: rename easy_conn to just conn We use "conn" everywhere to be a pointer to the connection. Introduces two functions that "attaches" and "detaches" the connection to and
urldata: rename easy_conn to just conn We use "conn" everywhere to be a pointer to the connection. Introduces two functions that "attaches" and "detaches" the connection to and from the transfer. Going forward, we should favour using "data->conn" (since a transfer always only has a single connection or none at all) to "conn->data" (since a connection can have none, one or many transfers associated with it and updating conn->data to be correct is error prone and a frequent reason for internal issues). Closes #3442
show more ...
|
61faa0b4 | 10-Jan-2019 |
Daniel Stenberg |
tool_cb_prg: avoid integer overflow When calculating the progress bar width. Reported-by: Peng Li Fixes #3456 Closes #3458 |
90254d0d | 10-Jan-2019 |
Daniel Gustafsson |
travis: turn off copyright year checks in checksrc Invoking the maintainer intended COPYRIGHTYEAR check for everyone in the PR pipeline is too invasive, especially at the turn of the
travis: turn off copyright year checks in checksrc Invoking the maintainer intended COPYRIGHTYEAR check for everyone in the PR pipeline is too invasive, especially at the turn of the year when many files get affected. Remove and leave it as a tool for maintainers to verify patches before commits. This reverts f7bdf4b2e1d81b2652b81b9b3029927589273b41. After discussion with: Daniel Stenberg
show more ...
|
13f09f6f | 10-Jan-2019 |
Daniel Stenberg |
KNOWN_BUGS: cmake makes unusable tool_hugehelp.c with MinGW Closes #3125 |
411d0c72 | 10-Jan-2019 |
Daniel Stenberg |
KNOWN_BUGS: Improve --data-urlencode space encoding Closes #3229 |
30ac4490 | 10-Jan-2019 |
Patrick Monnerat |
os400: add a missing closing bracket See https://github.com/curl/curl/issues/3453#issuecomment-453054458 Reported-by: jonrumsey on github |
adf39fbf | 10-Jan-2019 |
Patrick Monnerat |
os400: fix extra parameter syntax error. Reported-by: jonrumsey on github Closes #3453 |