Re: daemon excludes all my files

2006-09-23 Thread Matt McCutchen
The trouble is that your .* exclude pattern is matching . , the top level of the module, because * can match the empty string: skipping server-excluded file "." If your intent was to match hidden files, change the pattern to .?* to match a period followed by at least one character. Are you su

Re: incoming chmod on daemon fails on subdirectories

2006-09-23 Thread Wayne Davison
On Sat, Sep 23, 2006 at 07:58:05PM -0400, Matt McCutchen wrote: > Thanks, but what about the changes to acls.diff? I update patch failures when I'm about to make a new "nightly" tar file, and I'll do that then. ..wayne.. -- To unsubscribe or change options: https://lists.samba.org/mailman/listin

Re: incoming chmod on daemon fails on subdirectories

2006-09-23 Thread Matt McCutchen
On 9/23/06, Wayne Davison <[EMAIL PROTECTED]> wrote: Good catch. I committed your fix and the improved test. Thanks, but what about the changes to acls.diff? Two hunks failed when patchsync tried to automatically update my rsync-acl tree. Matt -- To unsubscribe or change options: https://lis

Re: incoming chmod on daemon fails on subdirectories

2006-09-23 Thread Wayne Davison
On Fri, Sep 22, 2006 at 10:32:44PM -0400, Matt McCutchen wrote: > The trouble is that tweak_mode (the function that applies chmod > strings) determines the type of the file it is processing based on the > type bits of the original mode it is passed, but dest_mode calls it > with a mode in which the

Re: incoming chmod on daemon fails on subdirectories

2006-09-23 Thread Bill Uhl
That seems to work as expected. Thanks, Bill Uhl Matt McCutchen wrote: Attached is my patch. I rewrote dest_mode and fixed the bug in the process. I also added a test to chmod-option.test and updated acls.diff to correctly patch my new dest_mode. Matt -- To unsubscribe or change options: