Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-08 | strlen() returns size_t | Daniel Stenberg | |
2004-03-08 | we ignore the ICC warning 1419 as well | Daniel Stenberg | |
2004-03-08 | waitconnect() takes the timeout argument as a long | Daniel Stenberg | |
2004-03-08 | store size as size_t | Daniel Stenberg | |
use %zd when outputting size_t | |||
2004-03-08 | don't use 'register' | Daniel Stenberg | |
make strtol() returns get stored in long variables don't mix size_t with int | |||
2004-03-08 | size_t/int/long fixes | Daniel Stenberg | |
2004-03-08 | we must not only support long long for Largefile to work, we must have | Daniel Stenberg | |
a curl_off_t type that is larger than 4 bytes | |||
2004-03-05 | issue 12 fixed, the final known outstanding issue to be done before 7.11.1 | Daniel Stenberg | |
2004-03-05 | issue 12 fix | Daniel Stenberg | |
2004-03-05 | another include to prevent warnings | Daniel Stenberg | |
2004-03-05 | two fixes, one new mirror | Daniel Stenberg | |
2004-03-05 | clonk | Daniel Stenberg | |
2004-03-05 | more fixing to make the progress/getinfo stuff to work properly when doing | Daniel Stenberg | |
file: transfers too | |||
2004-03-05 | clearly tell that these are ftp response timeouts | Daniel Stenberg | |
2004-03-05 | Major rewrite of the test HTTP server to allow more fancy features to make | Daniel Stenberg | |
better tests with the issue12-patch applied. This change also includes Andrés García's win32-fixes. Made the logging look better/more readable in sws.log | |||
2004-03-05 | 'make clean' should only remove the generated html files, index.html is not | Daniel Stenberg | |
one of them! | |||
2004-03-05 | mention the D binding | Daniel Stenberg | |
2004-03-05 | Multiple updates, most of them being proper formatting to create nice html | Daniel Stenberg | |
links in the web pages, but also additional facts and removal of old crap. | |||
2004-03-04 | issue 12 fix is pending and is working in devel | Daniel Stenberg | |
added issue 24 - fix the progress meter for large files on slow networks to not wrap | |||
2004-03-04 | When following to a new URL, we must make sure to call Curl_done() first, | Daniel Stenberg | |
since the current connection must be taken care of properly before we move on. Christopher R. Palmer reported a problem he found due to this mistake. | |||
2004-03-04 | Andrés García's patch to prevent warnings while compiling with mingw, mainly | Daniel Stenberg | |
because it is now possible to have both WIN32 and HAVE_CONFIG_H defined. | |||
2004-03-04 | use size_t for the data, but keep the protos use ssize_t to better fit | Daniel Stenberg | |
with the existing transfer.c code | |||
2004-03-04 | include the proper header file too | Daniel Stenberg | |
2004-03-04 | fix progress data to be updated properly for file: transfers, as reported | Daniel Stenberg | |
by Jesse Noller | |||
2004-03-04 | prevent harmless compiler warning | Daniel Stenberg | |
2004-03-04 | David Byron's version resource fix | Daniel Stenberg | |
2004-03-04 | new "version resource" file for windows builds | Daniel Stenberg | |
2004-03-03 | show curl --version output as well | Daniel Stenberg | |
2004-03-03 | largefile bit for the version_info and now winsock 1.1 only | Daniel Stenberg | |
2004-03-03 | David Byron's work on making libcurl only require winsock 1.1 on Windows | Daniel Stenberg | |
machines. | |||
2004-03-03 | three days of changes | Daniel Stenberg | |
2004-03-03 | more variable type cleanups | Daniel Stenberg | |
2004-03-03 | our timeout values are longs while 'tv_sec' is int | Daniel Stenberg | |
2004-03-03 | make the backup variable of the same kind as the data it backups! ;-) | Daniel Stenberg | |
2004-03-03 | some more size_t usage, and two added typecasts when converting from size_t | Daniel Stenberg | |
to long (MIPSpro warnings) | |||
2004-03-03 | tv_sec is an int, so we explicitly typecast the result of long - long to | Daniel Stenberg | |
an int when we assign it. | |||
2004-03-03 | attempted typecase to silence the MIPSpro warning: | Daniel Stenberg | |
cc-1506 cc: REMARK File = ../../curl/ares/ares__read_line.c, Line = 46 There is an implicit conversion from "unsigned long" to "int"; rounding, sign extension, or loss of accuracy may result. if (!fgets(*buf + offset, *bufsize - offset, fp)) | |||
2004-03-03 | #ifdef #define #undef circus to prevent compiler warnings on #if operations | Daniel Stenberg | |
with undefined variables. | |||
2004-03-03 | removed include stuff now handled by test.h | Daniel Stenberg | |
2004-03-03 | We let this file include more generic headers that many libtests need anyway | Daniel Stenberg | |
to reduce the amount of #include stuff in each single libNNN.c file. unistd.h was added to prevent select() warnings on FreeBSD | |||
2004-03-03 | Tom Bates' adjustment to build on his nsr-tandem-nsk. | Daniel Stenberg | |
2004-03-03 | rename struct FILE to FILEPROTO, to prevent it from causing trouble with | Daniel Stenberg | |
the plain old FILE typedef. | |||
2004-03-03 | Dan Fandrich fixed some GSS detection flaws | Daniel Stenberg | |
2004-03-02 | corrected the reuse_fresh condition | Daniel Stenberg | |
2004-03-02 | large file in jan 2004 | Daniel Stenberg | |
2004-03-02 | various updates | Daniel Stenberg | |
2004-03-02 | two items fixed, one so old I don't think its valid anymore | Daniel Stenberg | |
2004-03-02 | display src/config.h as well after configure as run | Daniel Stenberg | |
2004-03-02 | Yet another curl_off_t printf format attempt, we now exclude the %-letter from | Daniel Stenberg | |
FORMAT_OFF_T to allow additional options to get specified, like with '"%5" FORMAT_OFF_T'. | |||
2004-03-02 | Define CURL_NO_OLDIES to prevent us from getting obsolete stuff defined. | Daniel Stenberg | |