- May 10, 2017
-
-
Richard Hsu authored
@MarcelRaad noted that `test1399` causes infinite loop on MinGW. Looking into this, seems like it is related to how Windows handles CRLF. See https://github.com/curl/curl/commit/9e093f by @mback2k. Removing `test1399` as it's identical to `test1326` then with such a fix. Test 1399 was broughy by commit 862b02f8 Closes #1478
-
- May 09, 2017
-
-
Dan Fandrich authored
Include the test number in the names of files written out by tests to reduce the chance of accidental duplication and to make it more clear which test is associated with which file.
-
Dan Fandrich authored
This is already added by the test suite; it's not clear why all these tests had it, unless it's cargo-culting.
-
Marcel Raad authored
Avoid casting away low-level const.
-
Daniel Stenberg authored
... to really make sure the boundary fits in the target buffer. Fixes unused parameter 'buflen' warning. Reported-by: Michael Kaufmann Bug: https://github.com/curl/curl/pull/1468#issuecomment-300078754
-
- May 08, 2017
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
... using the docs/cmdline-opts/gen.pl script, so that we get all the command line option documentation from the same source. The generation of the list has to be done manually and pasted into the source code. Closes #1465
-
Daniel Stenberg authored
-
Jay Satiro authored
When the random seed is purposely made predictable for testing purposes by using the CURL_ENTROPY environment variable, process that data in an endian agnostic way so the the initial random seed is the same regardless of endianness. - Change Curl_rand to write to a char array instead of int array. - Add Curl_rand_hex to write random hex characters to a buffer. Fixes #1315 Closes #1468 Co-authored-by: Daniel Stenberg Reported-by: Michael Kaufmann
-
Dan Fandrich authored
Otherwise, subsequent uses of stunnel overwrite the configuration file of previous invocations so they can no longer be inspected.
-
Marcel Raad authored
Commit 481e0de0 changed the variable type from int to size_t, so don't cast the result of strlen to int anymore.
-
Marcel Raad authored
alarm's argument is unsigned.
-
Marcel Raad authored
long is 32 bits while size_t is 64 bits on MinGW-w64, so typecheck-gcc.h complains when using size_t for a long option. Also, curl_socket_t is unsigned long long rather than int.
-
Daniel Stenberg authored
... to also make it update when we remove files, like we did for --environment in commit a8e388dd.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Marcel Raad authored
Avoids narrowing conversion warnings because rlim_t is usually unsigned long. Closes https://github.com/curl/curl/pull/1469
-
- May 07, 2017
-
-
Marcel Raad authored
The first argument to select is an int, while curl_socket_t is unsigned long long when using WinSock. It's ignored anyway [1]. [1] https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141.aspx
-
Marcel Raad authored
Don't convert string literal to char * before assigning it to const char *.
-
Marcel Raad authored
Don't do anything in this file if CURLRES_THREADED is not defined.
-
Marcel Raad authored
The cases this warns about are handled elsewhere, so just use an intermediate variable to silence the warning.
-
- May 06, 2017
-
-
Rainer Canavan authored
Apparently, /usr/bin/m4 ignores the --version parameter and waits for input from stdin. Fixes #1471
-
Daniel Stenberg authored
...to render properly nroff.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... and USE_ENVIRONMENT and --environment. It was once added for RISC OS support and its platform specific behavior has been annoying ever since. Added in commit c3c8bbd3, mostly unchanged since then. Most probably not actually used for years. Closes #1463
-
Dan Fandrich authored
Also, document that numbered datacheck sections are possible.
-
- May 05, 2017
-
-
Marcel Raad authored
Avoid casting string literals to non-const char *.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Marcel Raad authored
calloc and ai_addrlen expect different (usually unsigned) types.
-
Daniel Stenberg authored
Suggested-by: Dan Fandrich
-
- May 04, 2017
-
-
Daniel Stenberg authored
... instead of numerical order. Closes #1466
-
Dan Fandrich authored
-
Marcel Raad authored
assign string literals to const char * instead of char * in order to avoid a lot of these warnings: cast from 'const char *' to 'char *' drops const qualifier [-Wcast-qual]
-
Dan Fandrich authored
-
Dan Fandrich authored
Windows does not allow setting the locale with environment variables (as the test attempted to do), so the test failed when run with a user locale that has a comma as radixchar. Changed the test to call setlocale() explicitly to ensure that a known working locale is set even on Windows.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-