Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-10-16 | Alexander Krasnostavsky made the CURLOPT_FTP_CREATE_MISSING_DIRS option work | Daniel Stenberg | |
fine even for third party transfers. | |||
2004-10-16 | libcurl leaked memory for cookies with the "max-age" field set. | Daniel Stenberg | |
2004-10-16 | Added Traian Nicolescu's patches for threaded resolver on | Gisle Vanem | |
Windows. Plugged some potential handle and memory leaks. Refs. http://curl.haxx.se/mail/lib-2004-10/0134.html http://curl.haxx.se/mail/lib-2004-10/0157.html | |||
2004-10-14 | Eric Vergnaud pointed out that libcurl didn't treat ?-letters in the user name | Daniel Stenberg | |
and password fields properly in URLs, like ftp://us?er:pass?word@site.com/. Added test 191 to verify the fix. | |||
2004-10-13 | Set errno = ENOMEM on faild countcheck(). | Gisle Vanem | |
2004-10-12 | #include "strerror.h" to get the strerror proto | Daniel Stenberg | |
2004-10-12 | add proper error message when send() fails | Daniel Stenberg | |
2004-10-11 | removed trailing whitespace | Daniel Stenberg | |
2004-10-11 | SO_NOSIGPIPE | Daniel Stenberg | |
2004-10-10 | another lame attempt to avoid the "warning: will never be executed" warning | Daniel Stenberg | |
by gcc 3.4 | |||
2004-10-10 | MSVC uses 'i64' suffix for 64-bit sizes. | Gisle Vanem | |
2004-10-10 | If long is 8 bytes we can use strtol() to get 64 bit numbers and won't need | Daniel Stenberg | |
our strtoll() replacement function. | |||
2004-10-10 | Prevent a longjmp warning by moving the rc assign within Curl_resolv(). | Daniel Stenberg | |
Andy Cedilnik reported. Warning on HP-UX? | |||
2004-10-10 | Use LL suffix for long long constants if the compiler supports it, to prevent | Daniel Stenberg | |
warnings. | |||
2004-10-08 | killed trailing whitespace | Daniel Stenberg | |
2004-10-08 | if basename was found, check for a prototype and if none was found, provide | Daniel Stenberg | |
our own in the formdata.c file to prevent warnings on systems without it | |||
2004-10-08 | prevent warning with comparison between signed and unsigned | Daniel Stenberg | |
2004-10-07 | use curl_strnequal(), not strncasecmp() | Daniel Stenberg | |
2004-10-07 | use tld_strerror() only if previously detected, since otherwise we can't | Daniel Stenberg | |
work with libidn < 0.5.6 | |||
2004-10-06 | Fixed tld_check_name(). idna_to_unicode_lzlz() should never fail, | Gisle Vanem | |
but return FALSE if 'uc_name == NULL' just in case. | |||
2004-10-06 | USE_LIBIDN: Added Top-level-domain (TLD) check for host->name. | Gisle Vanem | |
Only print a warning if check fails. | |||
2004-10-06 | Chih-Chung Chang reported that if you use CURLOPT_RESUME_FROM and enabled | Daniel Stenberg | |
CURLOPT_FOLLOWLOCATION, libcurl reported error if a redirect happened even if the new URL would provide the resumed file. Test case 188 added to verify the fix (together with existing test 99). | |||
2004-10-06 | avoid warnings on systems with this member set const | Daniel Stenberg | |
2004-10-06 | removed tabs and trailing whitespace from source | Daniel Stenberg | |
2004-10-06 | untabify | Daniel Stenberg | |
2004-10-05 | djgpp has basename() | Gisle Vanem | |
2004-10-05 | minor edit to re-use a variable and to hopefully avoid a (moot) warning | Daniel Stenberg | |
about code that won't be reached | |||
2004-10-05 | avoid warning for unused variable | Daniel Stenberg | |
2004-10-05 | use idna_strerror() if it is available (only in libidn 0.5.6 or later) | Daniel Stenberg | |
2004-10-05 | Only include libgen.h if we have a basename as well. | Daniel Stenberg | |
Mainly meant to deal with the IRIX case which seems to requrie a "-lgen" lib to find the basename function and thus without the gen lib, it finds the header but not the function and our replacement function has a prototype that doesn't match the IRIX one. A different approach would be to make configure detect and use -lgen for the systems that require it. | |||
2004-10-05 | let our basename() be static | Daniel Stenberg | |
2004-10-04 | Made the dns entry remain locked while a connection to the host remains to | Daniel Stenberg | |
allow verbose output during this period. Bertrand Demiddelaer reported and helped fixing. | |||
2004-10-03 | set async.done to TRUE last in the addrinfo callback to prevent the risk that | Daniel Stenberg | |
the multi-threaded resolver does wrong | |||
2004-10-03 | Replaced the use of isspace() with our own version instead since we have most | Daniel Stenberg | |
data as 'char *' and that makes us pass in negative values if there is 8bit data in the string. Changing to unsigned causes too much warnings or too many required typecasts to the normal string functions. | |||
2004-10-02 | Gisle Vanem provided code that displays an error message when the (libidn | Daniel Stenberg | |
based) IDN conversion fails. This is really due to a missing suitable function in the libidn API that I hope we can remove once libidn gets a function like this. | |||
2004-10-02 | removed weird preprocessor juggling not needed | Daniel Stenberg | |
2004-10-01 | someone should hit me | Daniel Stenberg | |
2004-10-01 | Aleksandar Milivojevic reported a problem in the Redhat bugzilla (see | Daniel Stenberg | |
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=134133) and not to anyone involved in the curl project! This happens when you try to curl a file from a proftpd site using SSL. It seems proftpd sends a somewhat unorthodox PASS response code (232 instead of 230). I relaxed the response code check to deal with this and similar cases. | |||
2004-10-01 | fixed the basename() replacement, reported by Gisle | Daniel Stenberg | |
2004-10-01 | - Based on Fedor Karpelevitch's formpost path basename patch, file parts in | Daniel Stenberg | |
formposts no longer include the path part. If you _really_ want them, you must provide your preferred full file name with CURLFORM_FILENAME. Added detection for libgen.h and basename() to configure. My custom basename() replacement function for systems without it, might be a bit too naive... Updated 6 test cases to make them work with the stripped paths. | |||
2004-09-30 | - Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows an | Daniel Stenberg | |
app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more failures in a more generic way, but let's start like this. | |||
2004-09-30 | killed trailing whitespace | Daniel Stenberg | |
2004-09-29 | Fixed an error message: we use CWD, we don't cd into dirs with FTP | Daniel Stenberg | |
2004-09-28 | Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakingly | Daniel Stenberg | |
enable the progress meter. | |||
2004-09-28 | Only active the engine code if ssl is enabled. This is how the actual engine | Daniel Stenberg | |
member in the struct is used. | |||
2004-09-26 | Ben Greear's minor fix to build (better) with cross-compiled(?) mingw | Daniel Stenberg | |
2004-09-25 | allow setting CURLOPT_SSLENGINE to NULL even if no SSL engine is supported | Daniel Stenberg | |
2004-09-22 | jean-claude Chauve fixed an LDAP bug | Daniel Stenberg | |
2004-09-20 | less long => int implicit conversion warnings | Daniel Stenberg | |
2004-09-19 | removed getdate.c hack. | Gunter Knauf | |