search for: 3af364c9

Displaying 2 results from an estimated 2 matches for "3af364c9".

Did you mean: 3af34c1
2016 Jan 21
0
[PATCH] Consider nanoseconds when quick-checking for unchanged files
...igure out if a particular device ID supports nanoseconds somehow. I have a potential heuristic in mind that I can code up and see how it works. ..wayne.. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20160120/3af364c9/attachment.html>
2014 Dec 25
8
[PATCH] Consider nanoseconds when quick-checking for unchanged files
On systems using nanoseconds differences should be taken into consideration. --- a/generator.c 2014-06-14 01:05:08.000000000 +0200 +++ b/generator.c 2014-12-25 11:19:54.000000000 +0100 @@ -588,7 +588,13 @@ if (ignore_times) return 0; - return cmp_time(st->st_mtime, file->modtime) == 0; + return cmp_time(st->st_mtime, file->modtime) == 0 +#ifdef ST_MTIME_NSEC + ?