Bugfix for acl/xattrs patches problem
This commit is contained in:
parent
965cc4dcf2
commit
85f0ea326a
45
rsync-2.6.9-acl-xattr-delete-bug.patch
Normal file
45
rsync-2.6.9-acl-xattr-delete-bug.patch
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
--- rsync-2.6.9/flist.c 2007-02-18 19:25:08.000000000 -0500
|
||||||
|
+++ rsync-2.6.9.fix/flist.c 2007-02-18 19:24:38.000000000 -0500
|
||||||
|
@@ -998,7 +998,7 @@
|
||||||
|
file->mode = tweak_mode(file->mode, chmod_modes);
|
||||||
|
|
||||||
|
#ifdef SUPPORT_ACLS
|
||||||
|
- if (preserve_acls) {
|
||||||
|
+ if (preserve_acls && f >= 0) {
|
||||||
|
sx.st.st_mode = file->mode;
|
||||||
|
sx.acc_acl = sx.def_acl = NULL;
|
||||||
|
if (get_acl(fname, &sx) < 0)
|
||||||
|
@@ -1006,7 +1006,7 @@
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#ifdef SUPPORT_XATTRS
|
||||||
|
- if (preserve_xattrs) {
|
||||||
|
+ if (preserve_xattrs && f >= 0) {
|
||||||
|
sx.xattr = NULL;
|
||||||
|
if (get_xattr(fname, &sx) < 0)
|
||||||
|
return NULL;
|
||||||
|
@@ -1021,20 +1021,20 @@
|
||||||
|
flist->files[flist->count++] = file;
|
||||||
|
send_file_entry(file, f);
|
||||||
|
#ifdef SUPPORT_ACLS
|
||||||
|
- if (preserve_acls)
|
||||||
|
+ if (preserve_acls && f >= 0)
|
||||||
|
send_acl(&sx, f);
|
||||||
|
#endif
|
||||||
|
#ifdef SUPPORT_XATTRS
|
||||||
|
- if (preserve_xattrs)
|
||||||
|
+ if (preserve_xattrs && f >= 0)
|
||||||
|
send_xattr(&sx, f);
|
||||||
|
#endif
|
||||||
|
} else {
|
||||||
|
#ifdef SUPPORT_ACLS
|
||||||
|
- if (preserve_acls)
|
||||||
|
+ if (preserve_acls && f >= 0)
|
||||||
|
free_acl(&sx);
|
||||||
|
#endif
|
||||||
|
#ifdef SUPPORT_XATTRS
|
||||||
|
- if (preserve_xattrs)
|
||||||
|
+ if (preserve_xattrs && f >= 0)
|
||||||
|
free_xattr(&sx);
|
||||||
|
#endif
|
||||||
|
}
|
@ -1,12 +1,13 @@
|
|||||||
Summary: A program for synchronizing files over a network.
|
Summary: A program for synchronizing files over a network.
|
||||||
Name: rsync
|
Name: rsync
|
||||||
Version: 2.6.9
|
Version: 2.6.9
|
||||||
Release: 1
|
Release: 2
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
# TAG: for pre versions use
|
# TAG: for pre versions use
|
||||||
#Source: ftp://rsync.samba.org/pub/rsync/rsync-%{version}pre1.tar.gz
|
#Source: ftp://rsync.samba.org/pub/rsync/rsync-%{version}pre1.tar.gz
|
||||||
Source: ftp://rsync.samba.org/pub/rsync/rsync-%{version}.tar.gz
|
Source: ftp://rsync.samba.org/pub/rsync/rsync-%{version}.tar.gz
|
||||||
Source1: rsync.xinetd
|
Source1: rsync.xinetd
|
||||||
|
Patch1: rsync-2.6.9-acl-xattr-delete-bug.patch
|
||||||
BuildRequires: libacl-devel, libattr-devel, autoconf, make, gcc
|
BuildRequires: libacl-devel, libattr-devel, autoconf, make, gcc
|
||||||
Prefix: %{_prefix}
|
Prefix: %{_prefix}
|
||||||
BuildRoot: /var/tmp/%{name}-root
|
BuildRoot: /var/tmp/%{name}-root
|
||||||
@ -27,6 +28,7 @@ package.
|
|||||||
%setup -q
|
%setup -q
|
||||||
patch -p1 < patches/acls.diff
|
patch -p1 < patches/acls.diff
|
||||||
patch -p1 < patches/xattrs.diff
|
patch -p1 < patches/xattrs.diff
|
||||||
|
%patch1 -p1 -b .acl_xattrs_bug
|
||||||
|
|
||||||
%build
|
%build
|
||||||
rm -fr autom4te.cache
|
rm -fr autom4te.cache
|
||||||
@ -56,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man5/rsyncd.conf.5*
|
%{_mandir}/man5/rsyncd.conf.5*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 19 2007 Simo Sorce <ssorce@redhat.com> - 2.6.9-2
|
||||||
|
- fix acl/xattr bug with --delete: (bz#229145)
|
||||||
|
|
||||||
* Wed Nov 22 2006 Florian La Roche <laroche@redhat.com> - 2.6.9-1
|
* Wed Nov 22 2006 Florian La Roche <laroche@redhat.com> - 2.6.9-1
|
||||||
- update to 2.6.9
|
- update to 2.6.9
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user