https://bugzilla.samba.org/show_bug.cgi?id=4957
------- Comment #2 from [EMAIL PROTECTED] 2007-09-07 06:02 CST ------- at least in 2.6.8+acl_patch, this seems to cure the problem: --- acls.c +++ acls.c @@ -455,7 +455,7 @@ do { int index; rsync_acl_list *racl_list = rsync_acl_lists(type); - if (f == -1) { + if (f == -1 || f == -2) { rsync_acl_free(curr_racl); continue; } not sure if this is the correct solution though. for 2.6.9 I have no idea yet, send_acl does not even check for "f == -1" in 2.6.9, far less for -2. -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html