summaryrefslogtreecommitdiffstats
path: root/usr.bin/rsync
AgeCommit message (Expand)AuthorFilesLines
2021-03-31add --no-motd to SYNOPSIS;jmc1-1/+2
2021-03-31Add option to suppress the Message of the Dayjob4-8/+17
2021-03-22Remove unveil() from the rsync_sender() and flist_gen(). The sender isclaudio2-24/+4
2021-03-22Adjust function name in error strings.claudio1-4/+4
2021-03-22Adjust a type to unsigned since the io function works on unsigned ints.claudio1-4/+5
2021-03-22Put comment where it belongs also remove an assert() that checks for anclaudio1-5/+2
2021-03-22Compare explicitly against NULL.claudio1-2/+2
2021-03-22Make fmt argument const. Format local vars a bit.claudio2-8/+8
2020-12-15Initialize the poll_timeout before rsync_server() is called.claudio1-7/+7
2020-11-24Simple implementation of --timeout to exit after specified seconds of I/Oclaudio6-15/+34
2020-08-19Handle EADDRNOAVAIL from connect(2) gracefullykn1-1/+3
2020-05-17__FILE__ and __LINE__ information are fine during early development, orderaadt2-40/+40
2020-02-11Simplify and unify wording for the -I sourceaddr option in various places.deraadt2-11/+10
2020-01-04Delete .Xrs to rsync(5) and rsyncd(5).schwarze1-5/+3
2019-08-26replace a mmap() with pread(). The mmap() is not needed, the file isbenno1-20/+32
2019-08-09Only print the message of the day in the rsyncd header if rsync isclaudio1-2/+2
2019-08-09Add --address argument to openrsync to bind to the specified addressclaudio4-15/+68
2019-06-28When system calls indicate an error they return -1, not some arbitraryderaadt2-6/+6
2019-06-27Some asprintf() calls were checked < 0, rather than the precise == -1.deraadt3-14/+14
2019-06-23fix free() on uninitialized pointer with -rx and samebenno1-17/+11
2019-06-03Don't close the socket in rsync_socket() itself but after calling it.naddy2-12/+6
2019-06-02KNF and sneaky whitespacesderaadt1-7/+5
2019-06-02Use a simple hash table to look up blocks by the fast-hash. Also useflorian3-45/+179
2019-06-02have_md is initialized at startup, don't need to do it again laterderaadt1-2/+1
2019-06-02spelling; from Hiltjo Posthumaderaadt1-2/+2
2019-05-28unintialized fd passed to close(), found by hiltjo posthumaderaadt1-2/+2
2019-05-08remove sess argument from all functions that only used it for loggingbenno15-150/+131
2019-05-08remove sess argument from log functions. ok deraadt@benno19-574/+560
2019-05-06Remove an example that doesn't do what the accompanying text says,schwarze1-11/+2
2019-04-04Add support for not crossing filesystem boundaries (-x) to rsync. Optionbket5-12/+95
2019-04-02annoying white spacederaadt4-17/+16
2019-04-02Pull in addargs() API from ssh to replace complicated hand-rolled argumentderaadt4-63/+128
2019-04-01many improvements to rsync(1) documentation:schwarze2-59/+82
2019-03-31Drop --devices and --specials from the synopsis because they are onlyschwarze2-9/+6
2019-03-31Increasing strictness regarding signed-vs-unsigned types and their rangederaadt5-67/+104
2019-03-31Add ability to combine rsync:// and -e by splitting rsync_socket()naddy4-42/+71
2019-03-30Make the synopsis more palatable by deleting useless long optionschwarze2-27/+14
2019-03-30repair confusing "} if" indent; from naddyderaadt1-2/+3
2019-03-30document --del, ok deraadt@naddy2-5/+6
2019-03-30For now perform utimes, chown, chmod in the same order as cp(1), untilderaadt1-38/+42
2019-03-30Add --del as alias for --delete.naddy1-2/+2
2019-03-30fix typo in ERRX1deraadt1-2/+2
2019-03-26Same INT32_MAX vs -1 confusion on the write-sidederaadt1-2/+2
2019-03-26INT32_MAX isn't -1, to indicate re-read for 64-bit value.deraadt1-2/+2
2019-03-25-z support isn't as trivial as linking -lz so it hasn't been writtenderaadt1-7/+12
2019-03-23Treat time from remote as unsigned 32 bit rather than signed, whenderaadt1-3/+4
2019-03-23indents and reflows around ERR*() and LOG*(); ok bennoderaadt12-125/+105
2019-03-23repair exit codes, slightly broken after last commit (please do not goderaadt4-37/+41
2019-03-22Don't register this manual page under the name rsync(1) yetschwarze1-5/+4
2019-03-22gettimeofday(2)+TIMEVAL_TO_TIMESPEC -> UTIME_NOW; simpler & more portable.cheloha1-17/+11