summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/scp.c
AgeCommit message (Collapse)Author
2001-04-06remove trailing / from source paths; fixes pr#1756Theo de Raadt
2001-03-28usage more like rcp and add missing -B to usage; ok markus@Kevin Steves
2001-03-28start to sync scp closer to rcp; ok markus@Kevin Steves
2001-03-21alpha fixes, from simonb@wasabisystems.comMarkus Friedl
2001-03-15use %lld in printf, ok millert@/deraadt@; report from ssh@client.fiMarkus Friedl
2001-03-02make copyright lines the same formatTheo de Raadt
2001-02-19np is changed by recursion; vinschen@redhat.comTheo de Raadt
2001-02-10fix memory leak; ok markus@Dan Harnett
2001-02-10revert a small change to allow -r option to work again; ok deraadt@Dan Harnett
2001-02-08sync with netbsd tree changes.Jun-ichiro itojun Hagino
- more strict prototypes, include necessary headers - use paths.h/pathnames.h decls - size_t typecase to int -> u_long
2001-02-08memory leak fix, and snprintf throughoutTheo de Raadt
2001-02-07unsigned long long -> %llu, not %qu. markus okJun-ichiro itojun Hagino
2001-02-04alpha happinessTheo de Raadt
2001-02-04unexpand and remove end-of-line whitespace; ok markus@Kevin Steves
2001-01-21split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.Markus Friedl
rename util.[ch] -> misc.[ch]
2001-01-19move ssh1 definitions to ssh1.h, pathnames to pathnames.hMarkus Friedl
2001-01-13getopt() returns -1 not EOF; stevesk@pobox.comMarkus Friedl
2001-01-01use shared fatal(); from stevesk@pobox.comMarkus Friedl
2000-12-19replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'Markus Friedl
with u_char.
2000-12-16allow + in usernames; request from Florian.Weimer@RUS.Uni-Stuttgart.DEMarkus Friedl
2000-12-16unused; from stevesk@pobox.comMarkus Friedl
2000-12-11when copying 0-sized files, do not re-print ETA time at completionTheo de Raadt
2000-10-18replace atomicio(read,...) with read(); ok deraadt@Markus Friedl
2000-10-14remove spaces from arguments; from djm@mindrot.orgMarkus Friedl
2000-10-11support 'scp -o' with help from mouring@pconline.comMarkus Friedl
2000-09-21utime() to utimes(); mouring@pconline.comMarkus Friedl
2000-09-07typoMarkus Friedl
2000-09-07cleanup copyright notices on all files. I have attempted to be accurate withTheo de Raadt
the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate.
2000-09-01cleanup and fix -S support; stevesk@sweden.hp.comTheo de Raadt
2000-08-24off_t in sink, to fix files > 2GB, i think, test is still running ;-)Theo de Raadt
2000-08-19knfTheo de Raadt
2000-08-19-S prog support; tv@debian.orgTheo de Raadt
2000-07-13close can fail on AFS, report error; from Greg Hudson <ghudson@mit.edu>Niels Provos
2000-06-20OpenBSD tagMarkus Friedl
2000-06-18typoMarkus Friedl
2000-05-02more atomicioTheo de Raadt
2000-05-01fix very rare EAGAIN/EINTR issues; based on work by djmTheo de Raadt
2000-04-16after completion, replace the progress bar ETA counter with a final elapsed ↵Theo de Raadt
time; my idea, aaron wrote the patch
2000-04-14whitespace cleanupMarkus Friedl
2000-03-16-pedantic: signed vs. unsigned, void*-arithm, etcMarkus Friedl
2000-01-24allow '.' in usernames; from jedgar@fxp.orgMarkus Friedl
2000-01-04document -4, -6, and 'ssh -L 2022/::1/22'Markus Friedl
2000-01-04ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new features:Markus Friedl
sshd allows multiple ListenAddress and Port options. note that libwrap is not IPv6-ready. (based on patches from <kick@kyoto.wide.ad.jp> and fujiwara@rcac.tdi.co.jp)
1999-12-06move atomicio into it's own file. wrap all socket write()s which were doingTheo de Raadt
write(sock, buf, len) != len, with atomicio() calls.
1999-11-24progress meter overflow fix from damien@ibs.com.auMarkus Friedl
1999-11-24KNF, final part 3Markus Friedl
1999-11-24much more KNFTheo de Raadt
1999-11-23KNF part 1Markus Friedl
1999-11-22syslog changes:Markus Friedl
* Unified Logmessage for all auth-types, for success and for failed * Standard connections get only ONE line in the LOG when level==LOG: Auth-attempts are logged only, if authentication is: a) successfull or b) with passwd or c) we had more than AUTH_FAIL_LOG failues * many log() became verbose() * old behaviour with level=VERBOSE
1999-11-17foregroundproc() in scpTheo de Raadt