Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-16 | correct version number for the certinfo addition | Daniel Stenberg | |
2008-10-16 | Added CURLINFO_CERTINFO | Daniel Stenberg | |
2008-10-16 | I renamed the function | Daniel Stenberg | |
2008-10-16 | Renamed Curl_ascii_equal to Curl_raw_equal and bugfixed the my_toupper function | Daniel Stenberg | |
used in strequal.c so now all test cases run fine for me again. | |||
2008-10-16 | Curl_ascii_equal() must not assume that the string is actually ASCII (so ↵ | Daniel Stenberg | |
that a-z are consecutive and with a 0x20 "distance" to the uppercase letter), since we do support EBCDIC as well. Thus I replaced the macro with a (larger) switch case. I better change the function name... | |||
2008-10-16 | some more temporary magic for the icc seg-fault issue | Yang Tse | |
2008-10-15 | fix warning | Daniel Stenberg | |
2008-10-15 | - Pascal Terjan filed bug #2154627 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl uses strcasecmp() in multiple places where it causes failures when the Turkish locale is used. This is because 'i' and 'I' isn't the same letter so strcasecmp() on those letters are different in Turkish than in English (or just about all other languages). I thus introduced a totally new internal function in libcurl (called Curl_ascii_equal) for doing case insentive comparisons for english-(ascii?) style strings that thus will make "file" and "FILE" match even if the Turkish locale is selected. | |||
2008-10-15 | Ensure that shell variable contents which have active meaning | Yang Tse | |
to the shell echo command are not interpreted when trying to remove extra whitespace from shell variable content. | |||
2008-10-15 | A <precheck> command is considered to have failed if it returns a non-zero | Dan Fandrich | |
return code. This way, if the precheck command can't be run at all for whatever reason, it's treated as a precheck failure which causes the test to be skipped. | |||
2008-10-15 | removed the proto as well since the function is now gone | Daniel Stenberg | |
2008-10-15 | remove Curl_strcasestr() since there is no code at all using this function! | Daniel Stenberg | |
2008-10-15 | mention his full name | Daniel Stenberg | |
2008-10-15 | - John Wilkinson filed bug #2155496 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2155496) pointing out an error case without a proper human-readable error message. When a read callback returns a too large value (like when trying to return a negative number) it would trigger and the generic error message then makes the proplem slightly different to track down. I've added an error message for this now. | |||
2008-10-15 | credit to John Wilkinson | Daniel Stenberg | |
2008-10-14 | Added signal-based resolver timeout issue | Dan Fandrich | |
2008-10-14 | Adjust Watcom C warnings: | Yang Tse | |
Disable warnings on structure members padding. | |||
2008-10-14 | Failing SFTP range tests cases 634 through 637 | Dan Fandrich | |
2008-10-14 | four additional pending issues | Daniel Stenberg | |
2008-10-14 | With this change Solaris target builds will now be done with _REENTRANT defined. | Yang Tse | |
2008-10-14 | attempt to fix compiler warning: | Yang Tse | |
`variable' might be clobbered by `longjmp' or `vfork' | |||
2008-10-14 | Adjust Tiny C basic options: | Yang Tse | |
Remove -b from debug-enabled configuration, as Tiny C might have been built without the memory and bounds checker support. | |||
2008-10-14 | Adjust GCC warnings: | Yang Tse | |
Better disable following warnings when cross-compiling with a gcc older than 3.0, to avoid warnings from third party system headers: -Wmissing-declarations -Wmissing-prototypes -Wunused -Wshadow | |||
2008-10-14 | eeek, append 1 on the right place as otherwise we didn't fix the problem | Daniel Stenberg | |
2008-10-14 | fix syntax error | Yang Tse | |
2008-10-14 | Initial attempt to detect Watcom C compiler | Yang Tse | |
2008-10-14 | fix compiler warning | Yang Tse | |
2008-10-13 | Prevent the accidental passing along NULL for the cases where the --trace | Daniel Stenberg | |
options don't succeed in opening the target file etc. Detected by coverity.com | |||
2008-10-13 | Prevent an off-by-one in a allocated buffer in glob_match_url() - detected by | Daniel Stenberg | |
coverity.com | |||
2008-10-13 | Removed superfluous check of clist->name, as in this code path that pointer | Daniel Stenberg | |
has already been dereferenced so it is bound to be valid. Pointed out to us by coverity.com | |||
2008-10-13 | Don't rely on shell support to run multiple precheck tests | Dan Fandrich | |
2008-10-13 | make naming scheme more consistent across whole file | Yang Tse | |
2008-10-13 | Adjust GCC warnings: | Yang Tse | |
Disable following warnings when cross-compiling with a gcc older than 3.0, to avoid warnings from third party system headers: -Wmissing-prototypes -Wunused -Wshadow | |||
2008-10-13 | attempt to fix or allow further detection of an elusive icc SIGSEGV | Yang Tse | |
2008-10-13 | There's no guarantee that a socket was involved at this point, so avoid ↵ | Yang Tse | |
displaying any error code. And on the other hand a message after setsockopt() certainly must use SOCKERRNO. | |||
2008-10-13 | Adjust GCC --enable-warnings: | Yang Tse | |
Do not enable -pedantic when cross-compiling with a gcc older than 3.0, to avoid warnings from third party system headers. | |||
2008-10-12 | adjust SGI MIPSpro C detection | Yang Tse | |
2008-10-12 | LCC compiler adjustments: | Yang Tse | |
Highest warning level is double -A, next is single -A. Due to the big number of warnings these trigger on third party header files it is impratical for us to use any of them here. If you want them simply define it in CPPFLAGS. | |||
2008-10-12 | Changed Curl_strlcat to strlcat, which is the one guaranteed to exist | Dan Fandrich | |
2008-10-12 | Ensure the IPv6 stack is operational before running this test (other tests | Dan Fandrich | |
use the startup of the IPv6 test server as a substitute check for this). | |||
2008-10-11 | remove extra space | Yang Tse | |
2008-10-11 | split SGI compiler check. One for MIPS C and another for MIPSpro C | Yang Tse | |
2008-10-11 | LCC compiler adjustments: | Yang Tse | |
Warning level reduced from double -A to single -A | |||
2008-10-11 | fix compiler warning | Yang Tse | |
2008-10-11 | fix compiler warning: explicit conversion of a 64-bit integral type to a ↵ | Yang Tse | |
smaller integral type | |||
2008-10-10 | Fixed some compiler warnings with CURL_DISABLE_HTTP | Dan Fandrich | |
2008-10-10 | attempt to fix or allow further detection of an elusive icc SIGSEGV | Yang Tse | |
2008-10-10 | _ Adapt OS400 EBCDIC wrappers to new options. | Patrick Monnerat | |
_ Update RPG binding accordingly. _ Fix new options comments. | |||
2008-10-10 | Initial attempt to detect Tiny C compiler | Yang Tse | |
2008-10-10 | Initial attempt to detect LCC compiler | Yang Tse | |