diff options
author | Wayne Davison <wayned@samba.org> | 2011-06-18 13:42:30 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2011-06-18 13:42:30 -0700 |
commit | a59a7b242393699fedeb4f66911e3fc9b4fadd73 (patch) | |
tree | e87e0559940020f9ceda9e563b94b9e59b866031 /rsync.h | |
parent | 5bfe00688206cde3cbc603e8d47b28788a19ca3a (diff) | |
download | rsync-a59a7b242393699fedeb4f66911e3fc9b4fadd73.tar.gz rsync-a59a7b242393699fedeb4f66911e3fc9b4fadd73.tar.bz2 rsync-a59a7b242393699fedeb4f66911e3fc9b4fadd73.zip |
Fix reading side of fake-symlink bug 7109.
Diffstat (limited to 'rsync.h')
-rw-r--r-- | rsync.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1044,7 +1044,7 @@ extern int errno; #ifdef HAVE_READLINK #define SUPPORT_LINKS 1 -#ifndef NO_SYMLINK_XATTRS +#if !defined NO_SYMLINK_XATTRS && !defined NO_SYMLINK_USER_XATTRS #define do_readlink(path, buf, bufsiz) readlink(path, buf, bufsiz) #endif #endif |