X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/e897210106a2626b8a627fde067949f6275981d5..5214a41bbae94607b196b199b483710e1babf292:/osx-xattr-nodev.diff diff --git a/osx-xattr-nodev.diff b/osx-xattr-nodev.diff index 3b87663..c84c1ee 100644 --- a/osx-xattr-nodev.diff +++ b/osx-xattr-nodev.diff @@ -8,40 +8,4 @@ To use this patch, run these commands for a successful build: ./configure (optional if already run) make -diff --git a/flist.c b/flist.c ---- a/flist.c -+++ b/flist.c -@@ -1355,6 +1355,7 @@ static struct file_struct *send_file_name(int f, struct file_list *flist, - #endif - #ifdef SUPPORT_XATTRS - if (preserve_xattrs) { -+ sx.st.st_mode = file->mode; - sx.xattr = NULL; - if (get_xattr(fname, &sx) < 0) { - io_error |= IOERR_GENERAL; -diff --git a/xattrs.c b/xattrs.c ---- a/xattrs.c -+++ b/xattrs.c -@@ -281,6 +281,10 @@ int get_xattr(const char *fname, stat_x *sxp) - { - sxp->xattr = new(item_list); - *sxp->xattr = empty_xattr; -+ -+ if (IS_SPECIAL(sxp->st.st_mode) || IS_DEVICE(sxp->st.st_mode)) -+ return 0; -+ - if (rsync_xal_get(fname, sxp->xattr) < 0) { - free_xattr(sxp); - return -1; -@@ -861,6 +865,11 @@ int set_xattr(const char *fname, const struct file_struct *file, - return -1; - } - -+ if (IS_SPECIAL(sxp->st.st_mode) || IS_DEVICE(sxp->st.st_mode)) { -+ errno = ENOTSUP; -+ return -1; -+ } -+ - ndx = F_XATTR(file); - return rsync_xal_set(fname, lst + ndx, fnamecmp, sxp); - } +based-on: 24079e988fc31af4eba56cd2701fdc5a4154980d