search for: set_create_tim

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

Did you mean: set_create_time
2008 Jun 20
1
supporting HFS+ attributes and forks on a Linux rsync server?
....c:410: `ATTR_CMN_CRTIME' undeclared (first use in this function) syscall.c:411: warning: implicit declaration of function `getattrlist' syscall.c:411: `FSOPT_NOFOLLOW' undeclared (first use in this function) syscall.c:406: warning: unused variable `attrList' syscall.c: In function `set_create_time': syscall.c:418: storage size of `attrList' isn't known syscall.c:428: `ATTR_BIT_MAP_COUNT' undeclared (first use in this function) syscall.c:429: `ATTR_CMN_CRTIME' undeclared (first use in this function) syscall.c:430: warning: implicit declaration of function `setattrlist'...
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
...olves the matter: ############## crtimes-hfs+.patch This patch prevents rsync from changing the creation date on the root of a volume. On HFS+, the root inode is always 2, as defined in hfs/hfs_format.h: kHFSRootFolderID = 2, /* Folder ID of the root folder */ So before calling set_create_time(), we verify from the existing stat struct that the inode of the current file 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 @@...