summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Mention updated config files.HEADmasterWayne Davison2023-05-043-0/+5
|
* update config.guess config.sub (#478)zhangwenlong2023-05-042-841/+1045
| | | | | | - curl -sL -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' - curl -sL -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' Signed-off-by: Wenlong Zhang <zhangwenlong@loongson.cn>
* A couple spelling tweaks; tweak order.Wayne Davison2023-04-302-5/+5
|
* Preparing for release of 3.3.0pre1 [buildall]v3.3.0pre1Wayne Davison2023-04-2910-15/+15
|
* Update the NEWS.Wayne Davison2023-04-291-0/+51
|
* Mention that `--crtimes` support is spotty.Wayne Davison2023-04-291-1/+3
|
* Fix issue with trailing --sparse --inplace blocks.Wayne Davison2023-04-292-19/+23
| | | | Fixes #450.
* Add --force-link-text to md-convert.Wayne Davison2023-04-232-2/+10
|
* Fix overflow of sum2 buffer for sha1 rolling checksums.Wayne Davison2023-04-223-2/+3
| | | | Fixed #353.
* Make use of .UR & .UE for links.Wayne Davison2023-04-221-2/+29
|
* Tweak shell protection news to mention a few more characters.Wayne Davison2023-03-301-3/+4
|
* add rrsync option to enforce `--ignore-existing` (#461)dogvisor2023-03-302-1/+10
| | | The `-no-overwrite` rrsync option disallows the updating of existing files for incoming rrsync copies.
* Fix flist string comparison issue in tr_TR.utf-8 locale.Wayne Davison2023-02-051-1/+1
|
* Don't call memcmp() on an empty lastdir.Wayne Davison2023-01-081-1/+1
|
* Add backtick to SHELL_CHARS.Wayne Davison2023-01-041-1/+1
|
* Trust the sender on a local transfer.Wayne Davison2022-12-011-1/+5
|
* A couple manpage links.Wayne Davison2022-11-231-5/+5
|
* Improve [global] module documentation.Wayne Davison2022-11-221-21/+25
|
* Duplicate argv data before poptFreeContext().Wayne Davison2022-11-222-83/+90
|
* Another python conversion.Wayne Davison2022-11-201-32/+53
|
* Convert a few more scripts to python3.Wayne Davison2022-11-165-55/+80
|
* Tweak an older NEWS item to be a bit clearer.Wayne Davison2022-11-091-4/+8
|
* Avoid quoting of tilde when it's a destination arg.Wayne Davison2022-11-051-1/+1
|
* Upgrade verion of actions.Wayne Davison2022-11-021-6/+6
|
* Check for EVP_MD_CTX_copy in crypto lib instead of MD5_Init.Wayne Davison2022-10-251-2/+2
|
* Call `OpenSSL_add_all_algorithms()` on older openssl versions.Wayne Davison2022-10-251-1/+5
|
* Init the checksum choices before the daemon auth.Wayne Davison2022-10-251-0/+2
|
* Fix protocol <= 29 daemon auth if openssl is handling md4.Wayne Davison2022-10-241-1/+3
|
* Cygwin needs stdout flushed. [buildall]Wayne Davison2022-10-221-0/+1
|
* Preparing for release of 3.2.7 [buildall]v3.2.7Wayne Davison2022-10-203-8/+8
|
* Improve JSON output a bit more.Wayne Davison2022-10-203-8/+26
|
* Make use of -VV when checking rsync capabilities.Wayne Davison2022-10-209-11/+11
|
* Re-run the exclude test using lsh.sh pull.Wayne Davison2022-10-192-25/+41
| | | | | | The exclude.test file continues to run local copies (which are a special kind of "push") while the exclude-lsh.test symlink runs a a "pull" using the lsh.sh script as the "remote" shell.
* Improve `--mkpath` a bit more.Wayne Davison2022-10-161-12/+14
|
* Include "buildall" flag in the release commit.Wayne Davison2022-10-161-1/+1
|
* Yet another manpage tweak.Wayne Davison2022-10-161-12/+11
|
* Fix version verification when "\|" doesn't work in sed.Wayne Davison2022-10-161-2/+4
|
* Silence autoconf warnings.Wayne Davison2022-10-163-17/+8
|
* Make the new manpage section better.Wayne Davison2022-10-161-20/+23
|
* A few more manpage clarifications.Wayne Davison2022-10-151-13/+27
|
* Fix autoconf help strings (#389)Alexponomarev72022-10-151-2/+2
|
* Add info on single-file copying; tweak `--mkpath`.Wayne Davison2022-10-121-18/+41
|
* Tweak NEWS.Wayne Davison2022-10-101-1/+1
|
* Change fgrep to grep.Wayne Davison2022-10-061-1/+1
|
* Fix validation of "preN" git tags for git-version.h.Wayne Davison2022-10-021-1/+1
|
* Mention smart-make in a comment.Wayne Davison2022-10-021-0/+2
|
* Mention the `--list-only` output format.Wayne Davison2022-10-021-7/+11
|
* Mention latest changes.Wayne Davison2022-10-022-7/+32
|
* Complain if the destination arg is empty.Wayne Davison2022-10-021-2/+13
|
* Read a 4-byte mtime as unsigned (old-protocol).Wayne Davison2022-10-022-1/+8
| | | | | | | | | | | | | | When conversing with a protocol 29 or earlier rsync, the modtime values are arriving as 4-byte integers. This change interprets these short values as unsigned integers, allowing the time that can be conveyed to range from 1-Jan-1970 to 7-Feb-2106 instead of the signed range of 13-Dec-1901 to 19-Jan-2038. Given that we are fast approaching 2038, any old-protocol transfers will be better served using the unsigned range rather than the signed. It is important to keep in mind that protocol 30 & 31 convey the full 8-byte mtime value (plus nanoseconds), allowing for a huge span of time that is not affected by this change.