| Commit message (Expand) | Author | Age | Files | Lines |
* | highly polished whitespace, mostly fixing spaces-for-tab and bad |  djm | 2021-04-03 | 1 | -4/+3 |
* | use the new variant log macros instead of prepending __func__ and |  djm | 2020-10-18 | 1 | -3/+3 |
* | allow -A to explicitly enable agent forwarding in scp and sftp. The |  djm | 2020-08-03 | 1 | -4/+7 |
* | Fix error message on close(2) and add printf format attributes. |  millert | 2020-05-29 | 1 | -4/+7 |
* | another case where a utimes() failure could make scp send a |  djm | 2020-05-06 | 1 | -4/+2 |
* | when receving a file in sink(), be careful to send at most a single |  djm | 2020-05-01 | 1 | -37/+59 |
* | run the 2nd ssh with BatchMode for scp -3 |  markus | 2020-04-30 | 1 | -1/+2 |
* | Replace all calls to signal(2) with a wrapper around sigaction(2). |  dtucker | 2020-01-23 | 1 | -11/+11 |
* | Fix potential truncation warning. ok deraadt. |  dtucker | 2019-09-09 | 1 | -2/+2 |
* | When system calls indicate an error they return -1, not some arbitrary |  deraadt | 2019-06-28 | 1 | -12/+12 |
* | when checking that filenames sent by the server side match what the |  djm | 2019-02-10 | 1 | -12/+270 |
* | add -T to usage(); |  jmc | 2019-01-27 | 1 | -2/+2 |
* | check in scp client that filenames sent during remote->local directory |  djm | 2019-01-26 | 1 | -9/+30 |
* | Have progressmeter force an update at the beginning and end of each |  dtucker | 2019-01-24 | 1 | -2/+2 |
* | Sanitize scp filenames via snmprintf. To do this we move the |  dtucker | 2019-01-23 | 1 | -1/+2 |
* | Add a -J option as a shortcut for -o Proxyjump= to scp(1) and sftp(1) |  tb | 2019-01-21 | 1 | -3/+5 |
* | disallow empty incoming filename or ones that refer to the current |  djm | 2018-11-16 | 1 | -2/+3 |
* | Apply umask to all incoming files and directories not just files. |  dtucker | 2018-06-01 | 1 | -1/+3 |
* | lots of typos in comments/docs. Patch from Karsten Weiss after checking |  djm | 2018-04-10 | 1 | -2/+2 |
* | Disable RemoteCommand and RequestTTY in the ssh session started by |  djm | 2018-02-10 | 1 | -1/+3 |
* | Add helper function for uri handing in scp where a missing path |  millert | 2017-12-18 | 1 | -11/+36 |
* | Add URI support to ssh, sftp and scp. For example ssh://user@host |  millert | 2017-10-21 | 1 | -94/+105 |
* | Switch to recallocarray() for a few operations. Both growth and shrinkage |  deraadt | 2017-05-31 | 1 | -6/+2 |
* | remove options -12 from usage(); |  jmc | 2017-05-02 | 1 | -2/+2 |
* | exterminate the -1 flag from scp |  djm | 2017-04-30 | 1 | -1/+5 |
* | Avoid relying on implementation-specific behavior when detecting |  millert | 2017-04-28 | 1 | -6/+13 |
* | Avoid potential signed int overflow when parsing the file size. |  millert | 2017-04-27 | 1 | -4/+9 |
* | Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then use those definitions |  deraadt | 2016-09-12 | 1 | -4/+3 |
* | To prevent screwing up terminal settings when printing to the |  schwarze | 2016-05-25 | 1 | -17/+28 |
* | Improve accuracy of reported transfer speeds by waiting for the ack from |  dtucker | 2016-03-02 | 1 | -5/+5 |
* | pledge "stdio rpath wpath cpath fattr tty proc exec" except for the |  deraadt | 2015-11-27 | 1 | -1/+11 |
* | 0 -> NULL when comparing with a char*. |  mmcc | 2015-10-16 | 1 | -2/+2 |
* | rename xrealloc() to xreallocarray() since it follows that form. |  deraadt | 2015-04-24 | 1 | -2/+2 |
* | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 2015-01-16 | 1 | -4/+5 |
* | when copying local->remote fails during read, don't send uninitialised |  djm | 2014-06-24 | 1 | -3/+7 |
* | unsigned casts for ctype macros where neccessary |  deraadt | 2013-11-20 | 1 | -3/+3 |
* | improved time_t overflow check suggested by guenther@ |  djm | 2013-06-22 | 1 | -3/+5 |
* | make this -Wsign-compare clean after time_t conversion |  djm | 2013-06-21 | 1 | -3/+3 |
* | Handle time_t values as long long's when formatting them and when |  guenther | 2013-06-17 | 1 | -25/+38 |
* | use MAXPATHLEN for buffer size instead of fixed value. ok markus |  dtucker | 2013-06-04 | 1 | -2/+2 |
* | Replace S_IWRITE, which isn't standardized, with S_IWUSR, which is. Patch |  dtucker | 2013-06-01 | 1 | -2/+2 |
* | bye, bye xfree(); ok markus@ |  djm | 2013-05-17 | 1 | -12/+10 |
* | Fix some "unused result" warnings found via clang and -portable. ok markus@ |  dtucker | 2013-05-16 | 1 | -2/+2 |
* | suppress adding '--' to remote commandlines when the first argument |  djm | 2011-09-09 | 1 | -5/+9 |
* | scp.1: grammer fix |  jmc | 2010-12-09 | 1 | -2/+2 |
* | add a new -3 option to scp: Copies between two remote hosts are |  markus | 2010-12-08 | 1 | -3/+86 |
* | Pass through ssh command-line flags and options when doing remote-remote |  djm | 2010-11-26 | 1 | -10/+22 |
* | add an option per-read/write callback to atomicio |  djm | 2010-09-22 | 1 | -99/+22 |
* | Fix a longstanding problem where if you suspend scp at the |  millert | 2010-07-01 | 1 | -1/+19 |
* | When passing user-controlled options with arguments to other programs, |  guenther | 2009-12-20 | 1 | -7/+14 |