Displaying 2 results from an estimated 2 matches for "attr_cmn_crtime".
2008 Jun 20
1
supporting HFS+ attributes and forks on a Linux rsync server?
...tion `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' 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':
sy...
2007 Oct 13
1
Using pre2 for backing up a mac
...e to copy the flags into an xattr.
The "locked flag" is actually just the bsd immutable flag; the author
of that article is wrong. So solving the bsd flag issue solves this.
The creation date is AFAIK a mac os specific piece of meta-data and
can be accessed via the set/getattrlist + ATTR_CMN_CRTIME system call
on a mac. Again, this meta-data might be reasonably converted into an
extended attribute.
I've noticed the ACLs on a mac are only saved in an xattr on a linux
machine when the fake-super option is used. I'm not sure if this is
the right thing to do, and I'm not sure...