Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-17 | OOM condition fix | Yang Tse | |
2008-10-17 | Charles Hardin made adig support a regular numerical dotted IP address for the | Daniel Stenberg | |
-s option as well. | |||
2008-10-17 | 185 - CURLOPT_PROXYUSER etc | Daniel Stenberg | |
done! | |||
2008-10-17 | After having studied one of the coverity.com reports at length last night, I | Daniel Stenberg | |
decided it was a good idea to properly document my thoughts in a comment near the code that was identified as a possible flaw. A false positive as far as I can see. | |||
2008-10-17 | remove some spurious line-endings | Yang Tse | |
2008-10-17 | portability fix to avoid memory alignment problems | Yang Tse | |
2008-10-16 | Return an error when a proxy option is set when configured with | Dan Fandrich | |
--disable-proxy mode. Removed some unnecessary prototypes. | |||
2008-10-16 | Added missing HTTP proxy and other keywords | Dan Fandrich | |
2008-10-16 | CURLOPT_POST301 => CURLOPT_POSTREDIR | Dan Fandrich | |
2008-10-16 | don't segfault when NULL is passed in to CURLOPT_USERPWD or | Daniel Stenberg | |
CURLOPT_PROXYUSERPWD | |||
2008-10-16 | - Igor Novoseltsev added CURLOPT_PROXYUSER and CURLOPT_PROXYPASSWORD that then | Daniel Stenberg | |
make CURLOPT_PROXYUSERPWD sort of deprecated. The primary motive for adding these new options is that they have no problems with the colon separator that the CURLOPT_PROXYUSERPWD option does. | |||
2008-10-16 | compile the library file strequal.c to get the Curl_raw_equal function as | Daniel Stenberg | |
that's not exported by the lib | |||
2008-10-16 | mention the openssl requirement for the certinfo data | Daniel Stenberg | |
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 | |