Displaying 3 results from an estimated 3 matches for "get_create_tim".
Did you mean:
get_create_time
2008 Jun 20
1
supporting HFS+ attributes and forks on a Linux rsync server?
...e used the instructions at http://www.bombich.com/mactips/rsync.html
to patch and install rsync 3.0.2 to support HFS+ attributes and forks on
the client. I was assuming the Linux box needed the same version, and so
tried compiling the patched rsync but got the following:
syscall.c: In function `get_create_time':
syscall.c:406: storage size of `attrList' isn't known
syscall.c:409: `ATTR_BIT_MAP_COUNT' undeclared (first use in this function)
syscall.c:409: (Each undeclared identifier is reported only once
syscall.c:409: for each function it appears in.)
syscall.c:410: `ATTR_CMN_CRTIME'...
2009 Apr 18
8
DO NOT REPLY [Bug 6276] New: crtimes.patch does not preserve creation dates on Mac x86_64 only
https://bugzilla.samba.org/show_bug.cgi?id=6276
Summary: crtimes.patch does not preserve creation dates on Mac
x86_64 only
Product: rsync
Version: 3.0.6
Platform: x86
OS/Version: Mac OS X
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
2010 Sep 16
4
DO NOT REPLY [Bug 7685] New: rsync should not set the creation data on the root folder of an HFS+ volume
...le is not 2.
diff -Naur rsync-3.0.7_orig/rsync.c rsync-3.0.7/rsync.c
--- rsync-3.0.7_orig/rsync.c 2010-09-16 10:49:54.000000000 -0500
+++ rsync-3.0.7/rsync.c 2010-09-16 10:50:43.000000000 -0500
@@ -480,6 +480,7 @@
if (sxp->crtime == 0)
sxp->crtime = get_create_time(fname);
if (cmp_time(sxp->crtime, file_crtime) != 0
+ && sxp->st.st_ino != 2 // Don't set the creation date on the
root folder of an HFS+ volume
&& set_create_time(fname, file_crtime) == 0)
updated =...