- Jul 27, 2012
-
-
Guenter Knauf authored
This needs another look from the configure experts. I tested that it works so far with MinGW64 cross-compiler; libcurl builds and links fine, but curl not yet ...
-
- Jul 26, 2012
-
-
Ant Bryan authored
-
Daniel Stenberg authored
The --silent bug came with 7561a0fc which was never in a release. Pointed out by Kamil Dudka
-
Daniel Stenberg authored
4 more bugfixes, 3 more contributors
-
Guenter Knauf authored
Synced the output to the same short form as we now use for Windows SSL (WinSSL).
-
- Jul 25, 2012
-
-
Nick Zitzmann authored
Previously the curl_multi interface would freeze if darwinssl was enabled and at least one of the handles tried to connect to a Web site using HTTPS. Removed the "wouldblock" state darwinssl was using because I figured out a solution for our "would block but in which direction?" dilemma.
-
Guenter Knauf authored
-
- Jul 23, 2012
-
-
Daniel Stenberg authored
Reported by: Santhana Todatry
-
- Jul 22, 2012
-
-
Daniel Stenberg authored
DragonFly uses milliseconds, while our API and Linux use full seconds. Reported by: John Marino Bug: http://curl.haxx.se/bug/view.cgi?id=3546257
-
Kamil Dudka authored
Bug: https://bugzilla.redhat.com/676596
-
Kamil Dudka authored
... and orig_isatty which caused --silent to be entirely ignored in case the standard output was redirected to a file!
-
- Jul 21, 2012
-
-
Anton Yabchinskiy authored
-
Guenter Knauf authored
-
- Jul 20, 2012
-
-
Daniel Stenberg authored
The clean-local hook needed some polish to make sure make distclean works. Added comment describing why.
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
Guenter Knauf authored
Previous fix didnt work on Linux ...
-
Guenter Knauf authored
-
Guenter Knauf authored
Replaced the Windows real path from mount hack with a more reliable and simpler hack: the MSYS shell has a builtin pwd which understands a -W option which does convertion to Windows paths. Tested and confirmed that this works on all MSYS versions I have back to a 3 year old one.
-
- Jul 19, 2012
-
-
Guenter Knauf authored
1) the check for winssl needs to come before nss check 2) the SSL checks must begin with a new if or else we will never find any SSL lib with MinGW.
-
- Jul 17, 2012
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
This is a MSYS/MinGW-only warning; full warning text is: Use of uninitialized value in numeric gt (>) at ../../curl/tests/runtests.pl line 2227.
-
- Jul 15, 2012
-
-
Daniel Stenberg authored
Fixed 6 bugs, added 3 contributors
-
Daniel Stenberg authored
In many states the easy_conn pointer is referenced and just assumed to be working. This is an added extra check since analyzing indicates there's a risk we can end up in these states with a NULL pointer there.
-
Daniel Stenberg authored
It should return PARAM_NO_MEM if the strdup fails. Spotted by clang-analyzer
-
Guenter Knauf authored
-
- Jul 13, 2012
-
-
Daniel Stenberg authored
Spotted by clang-analyzer
-
Daniel Stenberg authored
Spotted by clang-analyzer. The return code was never checked, just stored.
-
Daniel Stenberg authored
va_end() needs to be used after va_start() and we don't normally use Curl_ prefixes for purely static functions.
-
Philip Craig authored
This avoids false positives from clang's scan-build.
-
- Jul 12, 2012
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Daniel Stenberg authored
-
Guenter Knauf authored
-
- Jul 11, 2012
-
-
Daniel Stenberg authored
Test 1409 and 1410 verifies the stricter numeric option parser introduced the other day in commit f2b6ebed.
-
Daniel Stenberg authored
I made "connmon" not get initialized properly before use, and I use the big hammer and make sure we always clear the entire struct to avoid any problem like this in the future.
-
Daniel Stenberg authored
Two commits ago, we fixed a bug where the connction would be closed prematurely after a HEAD. Now I added connection-monitor to test 48 and added a second HEAD and make sure that both are sent over the same connection. This triggered a failure before the bug fix and now works. Will help us avoid a future regression of this kind.
-
Daniel Stenberg authored
This makes verifying easier and makes us more sure curl closes the connection only at the correct point in time. Adjusted test 206 and 1008 accordingly and updated the docs for it.
-