Commit 98ed9217 authored by owsla's avatar owsla

Support extended attributes on symbolic links (part 2)


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@941 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 79e9f493
......@@ -198,8 +198,8 @@ def copy_attribs_inc(rpin, rpout):
log.Log("Copying inc attrs from %s to %s" % (rpin.index, rpout.path), 7)
check_for_files(rpin, rpout)
if Globals.change_ownership: apply(rpout.chown, rpin.getuidgid())
if rpin.issym(): return # symlinks don't have times or perms
if Globals.eas_write: rpout.write_ea(rpin.get_ea())
if rpin.issym(): return # symlinks don't have times or perms
if (Globals.resource_forks_write and rpin.isreg() and
rpin.has_resource_fork() and rpout.isreg()):
rpout.write_resource_fork(rpin.get_resource_fork())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment