Displaying 9 results from an estimated 9 matches for "support_acl".
Did you mean:
support_acls
2018 Oct 18
0
Cygwin build fails because headers no longer default to Solaris ACL
...nc builds using POSIX ACLs but haven't tested said functionality.
diff --git a/configure.ac b/configure.ac
index 45a96637..4f68e98a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -979,7 +979,7 @@ else
AC_DEFINE(HAVE_UNIXWARE_ACLS, 1, [true if you have UnixWare ACLs])
AC_DEFINE(SUPPORT_ACLS, 1, [Define to 1 to add support for ACLs])
;;
- solaris*|*cygwin*)
+ solaris*)
AC_MSG_RESULT(Using solaris ACLs)
AC_DEFINE(HAVE_SOLARIS_ACLS, 1, [true if you have solaris ACLs])
AC_DEFINE(SUPPORT_ACLS, 1)
Configure detects the following after the above mod:...
2006 Nov 10
1
Internal error: wrong write used in receiver.
Hi,
I'm using 2.6.9 but I get:
recv_files phase=1
generate_files phase=2
recv_files phase=2
recv_files finished
generate_files phase=3
deleting in home
delete_in_dir(home)
[generator] make_file(home/administ,*,2)
Internal error: wrong write used in receiver.
_exit_cleanup(code=2, file=io.c, line=1204): entered
_exit_cleanup(code=19, file=main.c, line=1182): entered
rsync error: received
2007 Aug 30
2
xattr version generates 'wrong write used in receiver'
...patch to 2.6.9, running ./prepare-source
and config with
./configure --enable-xattr-support
results in a version which fails to transfer with the error msg
'wrong write used in receiver' and complaints about protocol
mismatch. I see there's a patch for a similar problem when
SUPPORT_ACLS is defined; anybody done one for --xattrs? No, I'm not
using --acls. Using i386 up-to-date OSX on both sides.
2005 Jun 09
0
[Bug 2780] New: fix acl patch
...nfcodes.o zlib/inffast.o \
zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
zlib/zutil.o zlib/adler32.o
@@ -58,7 +58,7 @@
+/* handle passing ACLs between systems */
+
+#include "rsync.h"
-+#include "lib/sysacls.h"
++#include "sysacls.h"
+
+#ifdef SUPPORT_ACLS
+
@@ -4735,7 +4735,7 @@
? FCLIENT : FINFO;
--- orig/rsync.h 2005-05-03 17:11:01
+++ rsync.h 2005-05-12 23:32:56
-@@ -638,6 +638,44 @@ struct stats {
+@@ -638,6 +638,46 @@
#include "lib/permstring.h"
#include "lib/addrinfo.h"
@@ -4777,9 +4777,18 @@
+#endif /*...
2010 Jun 02
1
DO NOT REPLY [Bug 7489] New: rsyncd segfaults using daemon exclude filter
...the initialization earlier in the code:
# diff -c generator.c.orig generator.c
*** generator.c.orig 2009-04-26 08:51:50.000000000 -0600
--- generator.c 2010-06-02 15:04:36.000000000 -0600
***************
*** 1300,1305 ****
--- 1300,1311 ----
skip_dir = NULL;
}
+ #ifdef SUPPORT_ACLS
+ sx.acc_acl = sx.def_acl = NULL;
+ #endif
+ #ifdef SUPPORT_XATTRS
+ sx.xattr = NULL;
+ #endif
if (daemon_filter_list.head && (*fname != '.' || fname[1])) {
if (check_filter(&daemon_filter_list, FLOG, fname, is_dir) < 0)
{...
2008 Apr 14
0
[PATCH] xattrs not set on locked files that already exist on target
...e_executability;
@@ -445,6 +446,11 @@
if (daemon_chmod_modes && !S_ISLNK(new_mode))
new_mode = tweak_mode(new_mode, daemon_chmod_modes);
+#ifdef SUPPORT_FORCE_CHANGE
+ if (force_change)
+ make_mutable(fname, sxp->st.st_mode, sxp->st.st_flags, force_change);
+#endif
+
#ifdef SUPPORT_ACLS
if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
get_acl(fname, sxp);
## Note: I'm not using undo_make_mutable because set_fileflags is
called at the end of this method if we care about fileflags.
2008 Jun 25
2
DO NOT REPLY [Bug 5565] New: xattrs not set on locked files that already exist on target
...@@
if (daemon_chmod_modes && !S_ISLNK(new_mode))
new_mode = tweak_mode(new_mode, daemon_chmod_modes);
+#ifdef SUPPORT_FORCE_CHANGE
+ if (force_change)
+ make_mutable(fname, sxp->st.st_mode, sxp->st.st_flags,
force_change);
+#endif
+
#ifdef SUPPORT_ACLS
if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
get_acl(fname, sxp);
## Note: I'm not using undo_make_mutable because set_fileflags is called at the
end of this method if we care about fileflags.
--
Configure bugmail: https://bugzi...
2005 Jul 28
2
test failed with acl patch
In the mandriva rpm of rsync, we apply for our rpm the acl patch in the
patches directory.
I am trying to update our rpm to rsync 2.6.6 but one of the test failed with
this patch. It seems to be a minor problem, but can you have a look ?
Thanks by advance.
Following the message (a bit long):
----- itemize log follows
Testing for symlinks using 'test -h'
+
2008 Feb 15
4
Revised flags patch
...missions\n");
+ rprintf(F," --fileflags preserve file-flags\n");
rprintf(F," -E, --executability preserve the file's executability\n");
rprintf(F," --chmod=CHMOD affect file and/or directory permissions\n");
#ifdef SUPPORT_ACLS
@@ -473,6 +479,8 @@ static struct poptOption long_options[]
{"perms", 'p', POPT_ARG_VAL, &preserve_perms, 1, 0, 0 },
{"no-perms", 0, POPT_ARG_VAL, &preserve_perms, 0, 0, 0 },
{"no-p", 0, POPT_ARG_VAL,...