search for: preserve_crtimes

Displaying 2 results from an estimated 2 matches for "preserve_crtimes".

2010 Dec 18
0
Compilation for mac OS X with detect-renamed.diff patch
...ff & crtimes.diff => errors but different (but alway in connection with the last applied patch...) gcc -std=gnu99 -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -Wno-unused-parameter -c compat.c -o compat.o compat.c: In function 'setup_protocol': compat.c:144: error: 'preserve_crtimes' undeclared (first use in this function) compat.c:144: error: (Each undeclared identifier is reported only once compat.c:144: error: for each function it appears in.) compat.c:146: error: 'preserve_fileflags' undeclared (first use in this function) compat.c:146: error: 'forc...
2023 May 17
1
[PATCH] Add --omit-{device,special}-times options
...amp;& F_LENGTH(file) != sxp->st.st_size) diff -aNpRruz -X /etc/diff.excludes rsync-3.2.7/options.c devel-3.2.7/options.c --- rsync-3.2.7/options.c 2022-09-10 14:14:42.000000000 -0600 +++ devel-3.2.7/options.c 2022-09-10 14:14:42.000000000 -0600 @@ -66,6 +66,8 @@ int preserve_atimes = 0; int preserve_crtimes = 0; int omit_dir_times = 0; int omit_link_times = 0; +int omit_device_times = 0; +int omit_special_times = 0; int trust_sender = 0; int update_only = 0; int open_noatime = 0; @@ -646,6 +648,10 @@ static struct poptOption long_options[] = { {"omit-link-times", 'J', POPT_AR...