aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-03-08don't compare signed/unsignedDaniel Stenberg
2004-03-08Removed John Clayton's really odd bug since its never been reported again andDaniel Stenberg
it was quite a long time since he experienced that one.
2004-03-08mention error 64Daniel Stenberg
2004-03-08the largefile for version_info fixDaniel Stenberg
2004-03-08fread() returns a size_tDaniel Stenberg
2004-03-08use curl standard source formattingDaniel Stenberg
2004-03-08typecast enum to int to make it printf() properlyDaniel Stenberg
2004-03-08variable type fixesDaniel Stenberg
2004-03-08Moved the error message buffer into the glob struct as well.Daniel Stenberg
2004-03-08Commented the Curl_read() arguments.Daniel Stenberg
2004-03-08size_t/int fixDaniel Stenberg
2004-03-08strlen() returns size_tDaniel Stenberg
2004-03-08we ignore the ICC warning 1419 as wellDaniel Stenberg
2004-03-08waitconnect() takes the timeout argument as a longDaniel Stenberg
2004-03-08store size as size_tDaniel Stenberg
use %zd when outputting size_t
2004-03-08don't use 'register'Daniel Stenberg
make strtol() returns get stored in long variables don't mix size_t with int
2004-03-08size_t/int/long fixesDaniel Stenberg
2004-03-08we must not only support long long for Largefile to work, we must haveDaniel Stenberg
a curl_off_t type that is larger than 4 bytes
2004-03-05issue 12 fixed, the final known outstanding issue to be done before 7.11.1Daniel Stenberg
2004-03-05issue 12 fixDaniel Stenberg
2004-03-05another include to prevent warningsDaniel Stenberg
2004-03-05two fixes, one new mirrorDaniel Stenberg
2004-03-05clonkDaniel Stenberg
2004-03-05more fixing to make the progress/getinfo stuff to work properly when doingDaniel Stenberg
file: transfers too
2004-03-05clearly tell that these are ftp response timeoutsDaniel Stenberg
2004-03-05Major rewrite of the test HTTP server to allow more fancy features to makeDaniel 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 notDaniel Stenberg
one of them!
2004-03-05mention the D bindingDaniel Stenberg
2004-03-05Multiple updates, most of them being proper formatting to create nice htmlDaniel Stenberg
links in the web pages, but also additional facts and removal of old crap.
2004-03-04issue 12 fix is pending and is working in develDaniel Stenberg
added issue 24 - fix the progress meter for large files on slow networks to not wrap
2004-03-04When 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-04Andrés García's patch to prevent warnings while compiling with mingw, mainlyDaniel Stenberg
because it is now possible to have both WIN32 and HAVE_CONFIG_H defined.
2004-03-04use size_t for the data, but keep the protos use ssize_t to better fitDaniel Stenberg
with the existing transfer.c code
2004-03-04include the proper header file tooDaniel Stenberg
2004-03-04fix progress data to be updated properly for file: transfers, as reportedDaniel Stenberg
by Jesse Noller
2004-03-04prevent harmless compiler warningDaniel Stenberg
2004-03-04David Byron's version resource fixDaniel Stenberg
2004-03-04new "version resource" file for windows buildsDaniel Stenberg
2004-03-03show curl --version output as wellDaniel Stenberg
2004-03-03largefile bit for the version_info and now winsock 1.1 onlyDaniel Stenberg
2004-03-03David Byron's work on making libcurl only require winsock 1.1 on WindowsDaniel Stenberg
machines.
2004-03-03three days of changesDaniel Stenberg
2004-03-03more variable type cleanupsDaniel Stenberg
2004-03-03our timeout values are longs while 'tv_sec' is intDaniel Stenberg
2004-03-03make the backup variable of the same kind as the data it backups! ;-)Daniel Stenberg
2004-03-03some more size_t usage, and two added typecasts when converting from size_tDaniel Stenberg
to long (MIPSpro warnings)
2004-03-03tv_sec is an int, so we explicitly typecast the result of long - long toDaniel Stenberg
an int when we assign it.
2004-03-03attempted 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 operationsDaniel Stenberg
with undefined variables.
2004-03-03removed include stuff now handled by test.hDaniel Stenberg