- Oct 24, 2008
- Oct 23, 2008
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
inclusion by the curl tool without colliding with the curl_strequal functions.
-
Daniel Stenberg authored
-
Dan Fandrich authored
don't have prototypes. They didn't serve any useful purpose here, anyway.
-
Dan Fandrich authored
Changed checkprefix() to use it and those instances of strnequal() that compare host names or other protocol strings that are defined to be independent of case in the C locale. This should fix a few more Turkish locale problems.
-
- Oct 22, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
run-time relocations.
-
- Oct 21, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
-
- Oct 20, 2008
-
-
Yang Tse authored
-
Dan Fandrich authored
-
Yang Tse authored
-
Daniel Stenberg authored
dereferenced here, if the app passes in a funny combo. Detected by coverity.com
-
- Oct 19, 2008
-
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
by coverity.com
-
Dan Fandrich authored
-
Yang Tse authored
-
- Oct 18, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
-
- Oct 17, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
GTLS.
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
- Oct 16, 2008
-
-
Dan Fandrich authored
--disable-proxy mode. Removed some unnecessary prototypes.
-
Daniel Stenberg authored
CURLOPT_PROXYUSERPWD
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
used in strequal.c so now all test cases run fine for me again.
-
Daniel Stenberg authored
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...
-
- Oct 15, 2008
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
(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.
-