f56d7535 | 06-Feb-2004 |
Daniel Stenberg |
A custom Host: header is only considered if the request is not made by following a location. After discussions with Tim Baker. |
e5165af5 | 06-Feb-2004 |
Daniel Stenberg |
The MIPSPro compiler complains on constructs such as "(void)foo;" so we avoid it where possible. |
83e87842 | 06-Feb-2004 |
Daniel Stenberg |
Make sure DynaGetFunction() returns a function pointer, not a data pointer. The standards don't actually allow typecasts between data and functions so some picky compilers warn about this. |
58a5f485 | 06-Feb-2004 |
Daniel Stenberg |
Remove the attempt to detect if we already tested the same source setup. We really don't care, and so many other things could've changed to make the new test interesting anyway. |
e8fb77fa | 05-Feb-2004 |
Daniel Stenberg |
numerous things went in today |
d292088a | 05-Feb-2004 |
Daniel Stenberg |
added the missing stdin section |
de100f8b | 05-Feb-2004 |
Daniel Stenberg |
An attempt to only set both libz-related defines at the same time. We need both the lib and the header present for both defines to be set. If only one of the files is found, we issue a warnin
An attempt to only set both libz-related defines at the same time. We need both the lib and the header present for both defines to be set. If only one of the files is found, we issue a warning and set no define.
show more ...
|
1cb2306a | 05-Feb-2004 |
Daniel Stenberg |
Andr�s Garc�a's updates |
cc90a235 | 05-Feb-2004 |
Daniel Stenberg |
if an empty 'transfer-encoding:' header is provided, we switch off the chunky coding of uploads |
e97ce57d | 05-Feb-2004 |
Daniel Stenberg |
Made a test that sends data on stdin to PUT, with a given length and chunked transfer-encoding disabled. Fixed to work after Len Krause's bug report. |
dc753b83 | 05-Feb-2004 |
Daniel Stenberg |
Gisle Vanem fixed a windows compiler warning |
a5c4442e | 05-Feb-2004 |
Daniel Stenberg |
changed the test() function to return type int |
a271cfb6 | 05-Feb-2004 |
Daniel Stenberg |
include process.h to get the _getpid() proto |
6dffe970 | 05-Feb-2004 |
Daniel Stenberg |
when using --enable-debug and gcc, provide the -Wno-format-nonliteral option to prevent the warning in mprintf.c: (currently line 930) "format not a string literal, argument types not ch
when using --enable-debug and gcc, provide the -Wno-format-nonliteral option to prevent the warning in mprintf.c: (currently line 930) "format not a string literal, argument types not checked"
show more ...
|
f7113975 | 05-Feb-2004 |
Daniel Stenberg |
options we get as longs need to be typecasted when assigned to prevent picky compiler warnings |
690b3e58 | 05-Feb-2004 |
Daniel Stenberg |
fix return type to silence compiler warnings |
0c7cb0c1 | 05-Feb-2004 |
Daniel Stenberg |
prevent warning from that picky MIPSpro compiler |
4816294f | 05-Feb-2004 |
Daniel Stenberg |
compiler warning fix, compare struct pointers of the same type |
6587ff44 | 05-Feb-2004 |
Daniel Stenberg |
use the timeout options when waiting for the server to connect when using PORT Provide better error messages to allow debugging if one if the ipv6-related name functions fail in the ftp_u
use the timeout options when waiting for the server to connect when using PORT Provide better error messages to allow debugging if one if the ipv6-related name functions fail in the ftp_use_port() function. This might help us diagnose the problems on AIX. Also make sure getaddrinfo() uses NULL and not "0" for the service argument.
show more ...
|
791e4913 | 05-Feb-2004 |
Daniel Stenberg |
hide the pack_hostent proto if ipv6 is enabled, as figured out by Tor Arntsen |
9254c3a1 | 05-Feb-2004 |
Daniel Stenberg |
Fix the socklen_t type too. Needed only when built with memory debugging as then we include the memdebug.h header from the lib dir, and it then requires this type... (fails on IRIX 6.5 withou
Fix the socklen_t type too. Needed only when built with memory debugging as then we include the memdebug.h header from the lib dir, and it then requires this type... (fails on IRIX 6.5 without this)
show more ...
|
9c95ebcb | 04-Feb-2004 |
Daniel Stenberg |
fixed "comparison between signed and unsigned" complaints |
3a4ed71b | 04-Feb-2004 |
Daniel Stenberg |
don't use 'sin' as variable name as the picky compiler warnings complain about it shadowing the function sin() |
d6d312d5 | 04-Feb-2004 |
Daniel Stenberg |
fixing |
1fa163fd | 04-Feb-2004 |
Daniel Stenberg |
prevent a compiler warning about a macro definition |