aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-11-04Kevin Roth's fix to make correct cygwin packagesDaniel Stenberg
2003-11-01blanked, starting all over againDaniel Stenberg
2003-11-01starting on 7.10.9 in CVSDaniel Stenberg
2003-11-017.10.8!Daniel Stenberg
2003-10-31ftp goes UTCDaniel Stenberg
2003-10-31gmtime() really can't even return NULL, can it?Daniel Stenberg
2003-10-31back to GMT againDaniel Stenberg
2003-10-31assume that MDTM returns the timestamp as UTCDaniel Stenberg
2003-10-31my own system had a bad valgrind, so check that it works at least somewhatDaniel Stenberg
before we use it
2003-10-31Debian bug report #218046, a minor typo.Daniel Stenberg
2003-10-31removed compiler warnings from my latest fixDaniel Stenberg
2003-10-31numerical options checkDaniel Stenberg
2003-10-31Added a new parse-numeric-parameters function so that options that takeDaniel Stenberg
a numeric argument can better bail out if given a weird parameter. This catches situations such as "-y -Y 2000" or "-O -C [URL]" etc.
2003-10-31newer, nicerDaniel Stenberg
2003-10-30Set version string to -CVS. This string is generated by maketgz at release-Daniel Stenberg
time.
2003-10-30Make the CVS version clone the libcurl version string, this is generatedDaniel Stenberg
by the maketgz script so in releases this is replaced by an actual string.
2003-10-30ignore .dist files hereDaniel Stenberg
2003-10-30Made the dist-hook more generic for adding more files named .dist into theDaniel Stenberg
dist archive. Preparing for a new maketgz.
2003-10-30--head on file://, some cleanupsDaniel Stenberg
2003-10-30more help text cleanupsDaniel Stenberg
2003-10-30silly me, I was meaning to do this change already as discussed on the libcurlDaniel Stenberg
list, we get the time in GMT and not localtime
2003-10-30curl --head now reports info "headers" on file:// URLs as wellDaniel Stenberg
2003-10-30updated for the cut off GMT stringDaniel Stenberg
2003-10-30when getting headers only, stop pretending the reported time is GMT, as itDaniel Stenberg
isn't. In fact, it might be, but we have no idea.
2003-10-30only use siginterrupt() if it really exists on the platformDaniel Stenberg
2003-10-30Check for siginterrupt, used by the test suite web server sws.Daniel Stenberg
2003-10-30Only compile the ipv6-section for ipv6-enabled libcurls. Should saveDaniel Stenberg
us some trouble.
2003-10-30Added proper #ifdef's for the #include files when checking for in_addr_t,Daniel Stenberg
which made the test start working nicely on BeOS. Shard verified it.
2003-10-29Stop using stunnel.pm, we pass in the path from the main script instead.Daniel Stenberg
Also made it easier to stop the test suite with control-c.
2003-10-29cleaned up the --help output. Tried to unify the language. Shortened a bunchDaniel Stenberg
of explanations.
2003-10-29David Hull made the file: URL parser also accept the somewhat sloppy fileDaniel Stenberg
syntax: file:/path. I added test case 203 to verify this.
2003-10-29stunnel.pm is no moreDaniel Stenberg
2003-10-29stunnel.pm is removedDaniel Stenberg
2003-10-29now check for and use valgrind, inserted and modified the check for stunnelDaniel Stenberg
and we no longer use the stunnel.pm
2003-10-29removed, functionality added to runtests.plDaniel Stenberg
2003-10-28Another glibc resolve name fixDaniel Stenberg
2003-10-28possibly uninitialized variableDaniel Stenberg
2003-10-28overlapping memory chunks with strcpy(), detected by the friendly valgrindDaniel Stenberg
2003-10-27slightly quieter torture test by defaultDaniel Stenberg
2003-10-27James Bursa's fix to prevent failf() to write outside its buffer boundaryDaniel Stenberg
2003-10-26James Bursa found an ERRORBUFFFER overflowDaniel Stenberg
2003-10-26snprintf() made a single-byte buffer overflow, as it could write a zeroDaniel Stenberg
outside its given buffer. Discovered and reported by James Bursa.
2003-10-25avoid dependence on the order of the fields in the timeval struct, pointed outDaniel Stenberg
by Gisle Vanem
2003-10-24support building ares-enabled tooDaniel Stenberg
2003-10-24tests the new -C - fixDaniel Stenberg
2003-10-24HTTP resume fixDaniel Stenberg
2003-10-24Resuming a download of an already downloaded document, that is trying to getDaniel Stenberg
a range of a document beyond its size, caused libcurl to "hang" until the server closed the connection and then it returned error 18. This is bad. This way, we don't return any error at all, which isn't nice either, as we need to alert the app somehow that the request range was out of size.
2003-10-24solaris build improvementDaniel Stenberg
2003-10-24Based on David Hull's fix in bug report 804599, we now check for solarisDaniel Stenberg
and gcc, to set the -mimpure-text link flag for linking the lib better.
2003-10-24don't select() forever, set a timeout so at least the test fails niceDaniel Stenberg