aboutsummaryrefslogtreecommitdiffstats
path: root/rsync.h
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2011-06-18 13:42:30 -0700
committerWayne Davison <wayned@samba.org>2011-06-18 13:42:30 -0700
commita59a7b242393699fedeb4f66911e3fc9b4fadd73 (patch)
treee87e0559940020f9ceda9e563b94b9e59b866031 /rsync.h
parent5bfe00688206cde3cbc603e8d47b28788a19ca3a (diff)
downloadandroid_external_rsync-a59a7b242393699fedeb4f66911e3fc9b4fadd73.tar.gz
android_external_rsync-a59a7b242393699fedeb4f66911e3fc9b4fadd73.tar.bz2
android_external_rsync-a59a7b242393699fedeb4f66911e3fc9b4fadd73.zip
Fix reading side of fake-symlink bug 7109.
Diffstat (limited to 'rsync.h')
-rw-r--r--rsync.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsync.h b/rsync.h
index f55e2f79..57e3d79d 100644
--- a/rsync.h
+++ b/rsync.h
@@ -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