- Apr 06, 2019
-
-
cclauss authored
Closes #3731 Fixes #3289
-
Simon Warta authored
This groups all SSL backends into the feature "SSL" and sets the SSL_BACKENDS analogue to configure.ac Closes https://github.com/curl/curl/pull/3736
-
Simon Warta authored
In case of an empty list, SORTing leads to the cmake error "list sub-command SORT requires list to be present." Closes https://github.com/curl/curl/pull/3736
-
- Apr 05, 2019
-
-
Eli Schwartz authored
Fish defines a vendor completions directory for completions that are not installed as part of the fish project itself, and the vendor completions are preferred if they exist. This prevents trying to overwrite the builtin curl.fish completion (or creating file conflicts in distro packaging). Prefer the pkg-config defined location exported by fish, if it can be found, and fall back to the correct directory defined by most systems. Closes #3723 Reviewed-by: Daniel Gustafsson
-
Marcel Raad authored
Removing the block is consistent with line 954/957. Closes https://github.com/curl/curl/pull/3732
-
Marcel Raad authored
Just remove the redundant condition, which also makes it clear that k->buf is always 0-terminated if this break is not hit. Closes https://github.com/curl/curl/pull/3732
-
Rikard Falkeborn authored
- Fix clang string-plus-int warning. Clang 8 warns about adding a string to an int does not append to the string. Indeed it doesn't, but that was not the intention either. Use array indexing as suggested to silence the warning. There should be no functional changes. (In other words clang warns about "foo"+2 but not &"foo"[2] so use the latter.) smtp.c:1221:29: warning: adding 'int' to a string does not append to the string [-Wstring-plus-int] eob = strdup(SMTP_EOB + 2); ~~~~~~~~~~~~~~~~^~~~ Closes https://github.com/curl/curl/pull/3729
-
- Apr 04, 2019
-
-
Marcel Raad authored
All Windows APIs have been natively UTF-16 since Windows 2000 and the non-Unicode variants are just wrappers around them. Only Windows 9x doesn't understand Unicode without the UnicoWS DLL. As later Visual Studio versions cannot target Windows 9x anyway, using the ANSI API doesn't really have any benefit there. This avoids issues like KNOWN_BUGS 6.5. Ref: https://github.com/curl/curl/issues/2120 Closes https://github.com/curl/curl/pull/3720
-
- Apr 03, 2019
-
-
Daniel Gustafsson authored
Bump the version in progress to 7.64.2, if we merge any "change" before the cut-off date we can update the version.
-
Tim Rühsen authored
Closes #3724 Reviewed-by: Jakub Zakrzewski Reviewed-by: Daniel Gustafsson
-
- Apr 02, 2019
-
-
Mert Yazıcıoğlu authored
OAUTHBEARER tokens were incorrectly generated in a format similar to XOAUTH2 tokens. These changes make OAUTHBEARER tokens conform to the RFC7628. Fixes: #2487 Reported-by: Paolo Mossino Closes https://github.com/curl/curl/pull/3377
-
Marcel Raad authored
Commit f5bc578f reintroduced the warning fixed in commit 2f5f31bb. Extend fhnd's scope and reuse that variable instead of calling _get_osfhandle a second time to fix the warning again. Closes https://github.com/curl/curl/pull/3718
-
- Apr 01, 2019
-
-
Marcel Raad authored
Already done in commit d5cfefd0 for the library project, but I forgot the tool project template. Now also removed for that.
-
Dan Fandrich authored
Try to run as many test cases as possible on each OS version. 12.0 passes 13 more tests than the older versions, so we might as well run them.
-
- Mar 31, 2019
-
-
Daniel Stenberg authored
Reported-by: Wyatt O'Day Fixes #3715 Closes #3716
-
Daniel Gustafsson authored
-
- Mar 28, 2019
-
-
Dan Fandrich authored
This allows a way to test changes other than through PRs.
-
- Mar 27, 2019
-
-
Brad Spencer authored
Closes #3699
-
Daniel Stenberg authored
Make sure to downgrade to 1.1 even when we get this HTTP/2 stream error on first flight. Reported-by: niner on github Fixes #3696 Closes #3707
-
Leonardo Taccari authored
Closes #3709
-
Daniel Stenberg authored
-
- Mar 26, 2019
-
-
Daniel Stenberg authored
This reverts commit 9130ead9. Fixes #3708
-
Christian Schmitz authored
Closes #3704
-
Jay Satiro authored
- Improve console detection. Prior to this change WriteConsole could be called to write to a handle that may not be a console, which would cause an error. This issue is limited to character devices that are not also consoles such as the null device NUL. Bug: https://github.com/curl/curl/issues/3175#issuecomment-439068724 Reported-by: Gisle Vanem
-
- Mar 25, 2019
-
-
Jay Satiro authored
-
Daniel Stenberg authored
Closes #3698
-
- Mar 24, 2019
-
-
Jay Satiro authored
Follow-up to 520f0b47 which added Alt-Svc support and enabled it by default for OS400. Since the feature is experimental, it should be disabled by default. Ref: https://github.com/curl/curl/commit/520f0b4#commitcomment-32792332 Ref: https://curl.haxx.se/mail/lib-2019-02/0008.html Closes https://github.com/curl/curl/pull/3688
-
Dan Fandrich authored
-
Dan Fandrich authored
[ci skip]
-
- Mar 22, 2019
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Test 311 is now fine, leaving only 313 (CRL) disabled. Test 313 details can be found here: https://github.com/wolfSSL/wolfssl/issues/1546 Closes #3697
-
Daniel Gustafsson authored
-
- Mar 20, 2019
-
-
David Woodhouse authored
Fixes #3692 Closes #3692
-
Daniel Stenberg authored
Reported-by: nianxuejie on github Assisted-by: Nick Zitzmann Assisted-by: Jay Satiro Fixes #3689 Closes #3690
-
- Mar 18, 2019
-
-
Daniel Stenberg authored
The threaded-shared-conn.c example turned into test case. Only works if pthread was detected. An attempt to detect future regressions such as e3a53e3e Closes #3687
-
- Mar 17, 2019
-
-
Patrick Monnerat authored
Although experimental, enable it in the platform config file. Upgrade ILE/RPG binding.
-
Daniel Stenberg authored
- make sure an already "owned" connection isn't returned unless multiplexed. - clear ->data when returning the connection to the cache again Regression since 7.62.0 (probably in commit 1b76c389) Bug: https://curl.haxx.se/mail/lib-2019-03/0064.html Closes #3686
-
- Mar 15, 2019
-
-
Daniel Stenberg authored
-
Chris Young authored
AmiSSL is an Amiga native library which provides a wrapper over OpenSSL. It also requires all programs using it to use bsdsocket.library directly, rather than accessing socket functions through clib, which libcurl was not necessarily doing previously. Configure will now check for the headers and ensure they are included if found. Closes #3677
-
Chris Young authored
... in the SSL structure as AmiSSL is using macros for the socket API functions.
-