aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-04-04Whoops--didn't mean to enable the ssh tests quite yet.Dan Fandrich
2007-04-04test can be allowed to run if fopen() is capable of fopen()ingYang Tse
SAFETY_MARGIN additional files once that we have already open()ed the big bunch of file descriptors.
2007-04-04Added more SSH tests (left disabled for now).Dan Fandrich
2007-04-04Fixed a memory leak and improper shutdown on SFTP post-quote command failure.Dan Fandrich
2007-04-03Only one issue left to deal with. Most of the others cut due to lack ofDaniel Stenberg
response and/or my personal lack of time to deal further with them at this point.
2007-04-03Rob Jones fixed better #ifdef'ing for a bunch of #include lines.Daniel Stenberg
2007-04-03update copyright yearYang Tse
2007-04-03Verify if the test is limited by an ancient stdio with a 256Yang Tse
open file limit. In this case the test is skipped with a message showing this limitation when the number of open files needed for the test is greater than 256.
2007-04-03fix enumeration of disabled tests when they have the highest numberYang Tse
2007-04-03fix MSDOS symbol checkYang Tse
2007-04-03recover code simplification lost with last commitYang Tse
2007-04-03Improve displaying of logfiles making sure all lines end with \nYang Tse
and avoid using ! as last char of line.
2007-04-03djgpp isn't the only possible DOS target.Gisle Vanem
Use the more traditional DJGPP define. Added basename() for non-djgpp targets.
2007-04-03Simplify setting binary mode on file-descriptors.Gisle Vanem
Work around the non-standard _setmode() in Metaware's HighC.
2007-04-03DOS targets do have setmode().Gisle Vanem
2007-04-03Added --ftp-account to --help output.Dan Fandrich
2007-04-03try not to link with unneeded libs, avoiding global LDADDYang Tse
2007-04-03Cleanup. Warnings related with FD_SET, FD_ISSET, and FD_ZERO macrosYang Tse
are not icc 9.0 specific.
2007-04-03when detecting un/supported sshd options use curl's sshd config file.Yang Tse
2007-04-03Eliminate the sshd option checking dependency on wc and make it faster.Dan Fandrich
2007-04-02Nick Zitzmann made CURLOPT_POSTQUOTE work for SFTP as well.Daniel Stenberg
2007-04-02fix error in previous commitYang Tse
2007-04-02fix compiler warningYang Tse
2007-04-02fix compiler warningYang Tse
2007-04-02verify ssh daemon versionYang Tse
2007-04-01print update message only if we really update CVS.Gunter Knauf
2007-04-01ignore another generated file.Gunter Knauf
2007-04-01Robert Iakobashvili made curl_multi_remove_handle() a lot faster when manyDaniel Stenberg
easy handles are added to a multi handle, by avoiding the looping over all the handles to find which one to remove.
2007-04-01Matt Kraai provided a patch that makes curl build on QNX 6 fine again. MostlyDaniel Stenberg
by letting configure check for setmode and ifdef on HAVE_SETMODE. NOTE: non- configure platforms that havve setmode() needs their hard-coded config.h files fixed. I fixed the src/config-win32.h.
2007-04-01Added scp and sftp nonexistent file retrieval tests, but leave themDan Fandrich
disabled for now.
2007-03-3126 flaws identified by coverity.comDaniel Stenberg
2007-03-31Since the str2num() function gets called with the 'nextarg' pointer fromDaniel Stenberg
within the getparameter a lot, we must check it for NULL before accessing the str data. CID 14 of the coverity.com scan
2007-03-31check the correct variable to want about --stderr failures properlyDaniel Stenberg
CID 18 by the coverity.com scan
2007-03-31fix memory leak in case of memory problemsDaniel Stenberg
CID 16 by coverity.com scan
2007-03-31fix a (minor) memory leak in case of errorDaniel Stenberg
CID 21 in the coverity.com scan
2007-03-31Pointless to check for non-NULL pointers that already have been dereferencedDaniel Stenberg
and they have to be non-NULL long before this check. CID 22 in the coverity.com scan
2007-03-31avoid dereferencing a NULL pointer by setting a default word to lookup in caseDaniel Stenberg
it is missing CID 5 in the coverity.com scan
2007-03-31Better deal with NULL pointers.Daniel Stenberg
CID 3 and 4 from the coverity.com scan.
2007-03-31"Pixel" fixed a problem that appeared when you used -f with user+passwordDaniel Stenberg
embedded in the URL.
2007-03-31*** empty log message ***Daniel Stenberg
2007-03-31add units to a few infoDaniel Stenberg
2007-03-31new URL for wxWidgets bindingDaniel Stenberg
2007-03-31Disable the SSH tests until the libssh2 bugs that causes test hangsDan Fandrich
are sorted out.
2007-03-31When curl_easy_duphandle() fails because it can't get or make a connectionDaniel Stenberg
cache, we must make sure not to derefence the NULL pointer... CID 6 coverity.com scan
2007-03-31The info types cannot be checked for explicity by ANDing the types since theyDaniel Stenberg
have not been properly defined to allow this! Instead of changing the defines and break the ABI/API, I opted to modify the code to check for exact type matches. CID 10 coverity.com scan
2007-03-31Check for a NULL easy->easy_conn in multi_getsock() since it can in factDaniel Stenberg
happen when curl_multi_remove_handle() is called. CID 13. coverity.com scan
2007-03-31Removed check for ftpcode being NULL, as later it is derefenced unconditionallyDaniel Stenberg
anyway and we can just as well rely on it being valid. CID 12, coverity.com scan
2007-03-31sshd might fail to start if given an unsupported configuration option.Yang Tse
Try to avoid this problem checking for some possible unsupported options, and avoid using them in the configuration file.
2007-03-30Fixed some typos in the comments.Dan Fandrich
2007-03-30Resurrected old FTPS error tests 402 and 403 as 404 and 405.Dan Fandrich