aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-05-07James Bursa's fix to make this deal with malloc(0) as OK to free()Daniel Stenberg
2004-05-07We don't support any long protocol names so we can use a smaller buffer.Daniel Stenberg
Also, make sure we have room for the trailing zero, only scan to size-1. Gisle Vanem reported.
2004-05-07count the formdata size using a 64bit size if avaialbleDaniel Stenberg
2004-05-07Made the lib/curllib.dsp file get generated automaticlyDaniel Stenberg
2004-05-07don't use a magic define nameDaniel Stenberg
2004-05-07This file is now generated at dist-time.Daniel Stenberg
2004-05-07Generate curllib.dsp on dist.time from msvcproj.head msvcproj.foot and theDaniel Stenberg
known source files. Not actually verified to work yet.
2004-05-07get the display host name properlyDaniel Stenberg
2004-05-06removed two odd commentsDaniel Stenberg
2004-05-06little fixesDaniel Stenberg
2004-05-06removed the warning if libidn isn't foundDaniel Stenberg
2004-05-06very minor output changeDaniel Stenberg
2004-05-06simplied the creation of new urlsDaniel Stenberg
2004-05-06%ld for longDaniel Stenberg
2004-05-06int/long fixDaniel Stenberg
2004-05-06Michael Benedict brought a fix that fills in the errorbuffer properlyDaniel Stenberg
when ares fails to resolve a name. This was fixed before but somehow has fallen out again!
2004-05-06typo AGAINDaniel Stenberg
2004-05-06When using the icc compiler, we also ignore remark #1418 "external definitionDaniel Stenberg
with no prior declaration" since this is a habit we have in the code.
2004-05-06printf %s with plain 'char *', not unsigned ones to silence icc's pickyDaniel Stenberg
warnings
2004-05-06if no strerror_r prototype is found, we provide our own to prevent pickyDaniel Stenberg
compilers to warn
2004-05-06removed the unused 'len' variable, made use of the ptr pointer even if noDaniel Stenberg
extra lib is used to prevent compiler warnings ("variable set but not used") on that case
2004-05-06typecast the unsigned long to plain long to prevent compiler warningsDaniel Stenberg
2004-05-06unused variable removedDaniel Stenberg
2004-05-06use %ld to printf now.tv_secDaniel Stenberg
2004-05-06curlx.h is a header to add to the release archive(s)Daniel Stenberg
2004-05-05fixed typoDaniel Stenberg
2004-05-05Temporary disable the logic that runs gdb on a core dump, as it can't blindlyDaniel Stenberg
assume that the curl file is a proper binary, it is often a script file produced by libtool.
2004-05-05hm, avoid division by zero more carefully with that new percentage mathDaniel Stenberg
2004-05-05Joe Halpin fixed the warning on the typecast from data pointer to functionDaniel Stenberg
pointer!
2004-05-05Gisle fixed the percentage to work, I adjusted it slightly to not as easilyDaniel Stenberg
overflow on 32bit filesize-systems
2004-05-05Gisle-fix: constified the 'interface' argument.Daniel Stenberg
2004-05-05Gisle fix: curl_formparse is gone.Daniel Stenberg
2004-05-05Gisle fixed: don't reference 'mem' if it's NULL.Daniel Stenberg
2004-05-05initiate variables properly to default to no auth for server and proxyDaniel Stenberg
2004-05-05AC_CHECK_TOOL is prolly better to use when checking for arDaniel Stenberg
2004-05-05slightly odd fix to prevent -Wunreachable-code to warnDaniel Stenberg
2004-05-05alert the user if 'sed' or 'ar' couldn't be found, as it might very wellDaniel Stenberg
render a build impossible
2004-05-05made the progress meter display not overflow even if _very_ large filesDaniel Stenberg
are transfered. The maximum size we support now is 8 exabytes, which equals to 8192 petabytes...
2004-05-05if the values allow it, avoid floting point math for the current speedDaniel Stenberg
2004-05-05additional typecasts in an attempt to avoid compiler warnings when switchingDaniel Stenberg
from 64 bit types to 32 bit ones
2004-05-05removed bad free()Daniel Stenberg
2004-05-05do the alarm time-left math using unsigned longs since that is what alarm()Daniel Stenberg
returns and uses as input and converting to signed generates warnings and actually risks loss of accuracy
2004-05-05fix_hostname() now (void)s the conn argument to prevent warnings on non-idnDaniel Stenberg
enabled builds
2004-05-05ERR_error_string() returns an unsigned long so we should use one of thoseDaniel Stenberg
for the return code
2004-05-05gcc 3.4 now uses the -Wunreachable-code option, I believe we can make olderDaniel Stenberg
ones use this too...
2004-05-05check the size of size_t for lib/mprintf.cDaniel Stenberg
2004-05-05prevent warnings when using the gcc option -Wunreachable-codeDaniel Stenberg
2004-05-05make the memlimit final NULL return get written to stderr as wellaDaniel Stenberg
2004-05-05mention the LICENSE-MIXING documentDaniel Stenberg
2004-05-05minor update editsDaniel Stenberg