summaryrefslogtreecommitdiffstats
path: root/usr.bin/rsync (follow)
Commit message (Expand)AuthorAgeFilesLines
* add --no-motd to SYNOPSIS;jmc2021-03-311-1/+2
* Add option to suppress the Message of the Dayjob2021-03-314-8/+17
* Remove unveil() from the rsync_sender() and flist_gen(). The sender isclaudio2021-03-222-24/+4
* Adjust function name in error strings.claudio2021-03-221-4/+4
* Adjust a type to unsigned since the io function works on unsigned ints.claudio2021-03-221-4/+5
* Put comment where it belongs also remove an assert() that checks for anclaudio2021-03-221-5/+2
* Compare explicitly against NULL.claudio2021-03-221-2/+2
* Make fmt argument const. Format local vars a bit.claudio2021-03-222-8/+8
* Initialize the poll_timeout before rsync_server() is called.claudio2020-12-151-7/+7
* Simple implementation of --timeout to exit after specified seconds of I/Oclaudio2020-11-246-15/+34
* Handle EADDRNOAVAIL from connect(2) gracefullykn2020-08-191-1/+3
* __FILE__ and __LINE__ information are fine during early development, orderaadt2020-05-172-41/+41
* Simplify and unify wording for the -I sourceaddr option in various places.deraadt2020-02-112-11/+10
* Delete .Xrs to rsync(5) and rsyncd(5).schwarze2020-01-041-5/+3
* replace a mmap() with pread(). The mmap() is not needed, the file isbenno2019-08-261-20/+32
* Only print the message of the day in the rsyncd header if rsync isclaudio2019-08-091-2/+2
* Add --address argument to openrsync to bind to the specified addressclaudio2019-08-094-15/+68
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-282-6/+6
* Some asprintf() calls were checked < 0, rather than the precise == -1.deraadt2019-06-273-14/+14
* fix free() on uninitialized pointer with -rx and samebenno2019-06-231-17/+11
* Don't close the socket in rsync_socket() itself but after calling it.naddy2019-06-032-12/+6
* KNF and sneaky whitespacesderaadt2019-06-021-7/+5
* Use a simple hash table to look up blocks by the fast-hash. Also useflorian2019-06-023-45/+179
* have_md is initialized at startup, don't need to do it again laterderaadt2019-06-021-2/+1
* spelling; from Hiltjo Posthumaderaadt2019-06-021-2/+2
* unintialized fd passed to close(), found by hiltjo posthumaderaadt2019-05-281-2/+2
* remove sess argument from all functions that only used it for loggingbenno2019-05-0815-150/+131
* remove sess argument from log functions. ok deraadt@benno2019-05-0819-575/+561
* Remove an example that doesn't do what the accompanying text says,schwarze2019-05-061-11/+2
* Add support for not crossing filesystem boundaries (-x) to rsync. Optionbket2019-04-045-12/+95
* annoying white spacederaadt2019-04-024-17/+16
* Pull in addargs() API from ssh to replace complicated hand-rolled argumentderaadt2019-04-024-63/+128
* many improvements to rsync(1) documentation:schwarze2019-04-012-59/+82
* Drop --devices and --specials from the synopsis because they are onlyschwarze2019-03-312-9/+6
* Increasing strictness regarding signed-vs-unsigned types and their rangederaadt2019-03-315-67/+104
* Add ability to combine rsync:// and -e by splitting rsync_socket()naddy2019-03-314-42/+71
* Make the synopsis more palatable by deleting useless long optionschwarze2019-03-302-27/+14
* repair confusing "} if" indent; from naddyderaadt2019-03-301-2/+3
* document --del, ok deraadt@naddy2019-03-302-5/+6
* For now perform utimes, chown, chmod in the same order as cp(1), untilderaadt2019-03-301-38/+42
* Add --del as alias for --delete.naddy2019-03-301-2/+2
* fix typo in ERRX1deraadt2019-03-301-2/+2
* Same INT32_MAX vs -1 confusion on the write-sidederaadt2019-03-261-2/+2
* INT32_MAX isn't -1, to indicate re-read for 64-bit value.deraadt2019-03-261-2/+2
* -z support isn't as trivial as linking -lz so it hasn't been writtenderaadt2019-03-251-7/+12
* Treat time from remote as unsigned 32 bit rather than signed, whenderaadt2019-03-231-3/+4
* indents and reflows around ERR*() and LOG*(); ok bennoderaadt2019-03-2312-125/+105
* repair exit codes, slightly broken after last commit (please do not goderaadt2019-03-234-37/+41
* Don't register this manual page under the name rsync(1) yetschwarze2019-03-221-5/+4
* gettimeofday(2)+TIMEVAL_TO_TIMESPEC -> UTIME_NOW; simpler & more portable.cheloha2019-03-221-17/+11