summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sftp-client.c
AgeCommit message (Expand)Author
2015-05-28add error message on ftruncate failure; bz#2176Damien Miller
2015-05-23fix a memory leak in an error pathJonathan Gray
2015-04-24rename xrealloc() to xreallocarray() since it follows that form.Theo de Raadt
2015-01-20Reduce use of <sys/param.h> and transition to <limits.h> throughout.Theo de Raadt
2015-01-14update sftp client and server to new buffer API.Damien Miller
2014-04-21Implement sftp upload resume support.Loganaden Velvindron
2014-01-31replace most bzero with explicit_bzero, except a few that cna be memsetTed Unangst
2014-01-17signed/unsigned comparison warning fix; from portableDamien Miller
2014-01-16needless and incorrect cast to size_t can break resumption ofDamien Miller
2013-12-05fix memory leak in error path in do_readdir(); pointed out byDamien Miller
2013-12-04bz#2171: don't leak local_fd on error; from Loganaden Velvindron @Damien Miller
2013-11-08Include stdlib.h for free() as per the man page.Darren Tucker
2013-11-08use calloc for all structure allocations; from markus@Damien Miller
2013-10-17fsync@openssh.com protocol extension for sftp-serverDamien Miller
2013-10-11missed one arg reorderDamien Miller
2013-10-11rename flag arguments to be more clear and consistent.Damien Miller
2013-09-19fix swapped pflag and printflag in sftp upload_dir; from Iain MorganDamien Miller
2013-08-09two problems found by a to-be-committed regress test: 1) msg_id was notDamien Miller
2013-08-08add a "-l" flag for the rename command to force it to use the sillyDamien Miller
2013-07-25sftp support for resuming partial downloads; patch mostly by LoganadenDamien Miller
2013-06-01Update progressmeter when data is acked, not when it's sent. bz#2108, fromDarren Tucker
2013-06-01Replace S_IWRITE, which isn't standardized, with S_IWUSR, which is. PatchDarren Tucker
2013-05-17bye, bye xfree(); ok markus@Damien Miller
2012-07-02fix a couple of "assigned but not used" warnings. ok markus@Darren Tucker
2011-09-12fix leak in do_lsreaddir(); ok djmMarkus Friedl
2011-09-11fix leaks in do_hardlink() and do_readlink(); bz#1921Markus Friedl
2010-12-04add a protocol extension to support a hard link operation. It isDamien Miller
2010-09-22add an option per-read/write callback to atomicioDamien Miller
2010-07-19bz#1797: fix swapped args in upload_dir_internal(), breaking recursiveDamien Miller
2010-06-18fix memory leak in do_realpath() error path; bz#1771, patch fromDamien Miller
2009-10-11d_type isn't portable so use lstat to get dirent modes. Suggested by andDarren Tucker
2009-08-18recursive transfer support for get/put and on the commandlineDamien Miller
2009-08-14make the "get_handle: ..." error messages vaguely useful by allowingDamien Miller
2009-06-22alphabetize includes; reduces diff vs portable and style(9). ok stevesk djmDarren Tucker
2008-06-26allow the sftp chmod(2)-equivalent operation to set set[ug]id/stickyDamien Miller
2008-06-12print extension revisions for extensions that we understandDamien Miller
2008-06-08Have the sftp client store the statvfs replies in wire format,Darren Tucker
2008-06-07statvfs member fsid needs to be wider, increase it to 64 bits andDamien Miller
2008-04-18introduce sftp extension methods statvfs@openssh.com andDamien Miller
2008-03-23prefer POSIX-style file renaming over filexfer rename behaviour if the serverDamien Miller
2008-01-21when a remote write error occurs during an upload, ensure that ACKs for allDamien Miller
2008-01-19fix remote handle leak in do_download() local file open error path;Damien Miller
2008-01-11disable unused functionsCharles Longeau
2007-09-16use off_t instead of u_int64_t for file offsets, matching what theDamien Miller
2007-01-22return error from do_upload() when a write fails. fixes bz#1252: zeroDamien Miller
2006-10-22cancel progress meter when upload write fails; ok deraadt@Damien Miller
2006-08-03almost entirely get rid of the culture of ".h files that include .h files"Theo de Raadt
2006-08-01move #include <stdio.h> out of includes.hKevin Steves
2006-07-26move #include <sys/param.h> out of includes.hKevin Steves
2006-07-25move #include <sys/time.h> out of includes.hKevin Steves