search for: anprruz

Displaying 3 results from an estimated 3 matches for "anprruz".

2023 May 17
1
[PATCH] Add --omit-{device,special}-times options
...milar to --omit-{dir,link}-times: --omit-device-times omit device files from --times --omit-special-times omit sockets and fifos from --times Also, fix corner case that allows --omit-dir-times to be ignored. See unchanged_attrs() and recv_generator()'s call to try_dests_non(). Marc. diff -aNpRruz -X /etc/diff.excludes rsync-3.2.7/generator.c devel-3.2.7/generator.c --- rsync-3.2.7/generator.c 2022-09-15 11:12:02.000000000 -0600 +++ devel-3.2.7/generator.c 2022-09-15 11:12:02.000000000 -0600 @@ -47,6 +47,8 @@ extern int preserve_perms; extern int preserve_mtimes; extern int omit_dir_times;...
2023 May 17
1
[PATCH] Fix the counting of device files and symlinks
Device files should be counted as devices, not symlinks. Marc. diff -aNpRruz -X /etc/diff.excludes rsync-3.2.7/delete.c devel-3.2.7/delete.c --- rsync-3.2.7/delete.c 2020-06-13 20:15:02.000000000 -0600 +++ devel-3.2.7/delete.c 2020-06-13 20:15:02.000000000 -0600 @@ -188,7 +188,7 @@ enum delret delete_item(char *fbuf, uint16 mode, uint16 flags) stats.deleted_symlinks++;...
2023 May 17
0
[PATCH] Fix documentation typo
s/receiveing/receiving/ Marc. diff -aNpRruz -X /etc/diff.excludes rsync-3.2.7/rsync.1.md devel-3.2.7/rsync.1.md --- rsync-3.2.7/rsync.1.md 2022-10-16 13:27:30.000000000 -0600 +++ devel-3.2.7/rsync.1.md 2022-10-16 13:27:30.000000000 -0600 @@ -245,7 +245,7 @@ to be copied to different destination directories using more than one copy. While a...