[Bug 10494] remove-source-files fails with symlinks

2019-03-20 Thread just subscribed for rsync-qa from bugzilla via rsync
https://bugzilla.samba.org/show_bug.cgi?id=10494 --- Comment #5 from Adrian Torregrosa --- I embedded the modified sender.c into 3.1.3's original source code, compiled and tested, and I found it to have solved the problem: first I tried uploading a softlink and deleting, then I tried uploading a

[Bug 10494] remove-source-files fails with symlinks

2019-03-16 Thread just subscribed for rsync-qa from bugzilla via rsync
https://bugzilla.samba.org/show_bug.cgi?id=10494 --- Comment #4 from Wayne Davison --- In my prior testing I apparently missed that the symlink verification issue was caused by -L (--copy-links). I have amended the change to use do_stat() when --copy-links is enabled. -- You are receiving this

[Bug 10494] remove-source-files fails with symlinks

2019-03-14 Thread just subscribed for rsync-qa from bugzilla via rsync
https://bugzilla.samba.org/show_bug.cgi?id=10494 --- Comment #3 from Adrian Torregrosa --- Another option that I tried and verified, and that could make more sense, would be to replace 141 if (do_lstat(fname, &st) < 0) { with 141 if (do_stat(fname, &st) < 0) { -- You are rece

[Bug 10494] remove-source-files fails with symlinks

2019-03-14 Thread just subscribed for rsync-qa from bugzilla via rsync
https://bugzilla.samba.org/show_bug.cgi?id=10494 --- Comment #2 from Adrian Torregrosa --- We have found this same problem using rsync 3.1.2. I have downloaded the source code for version 3.1.3, and found the following lines in sender.c: 146 if (S_ISREG(file->mode) /* Symlinks & devices

[Bug 10494] remove-source-files fails with symlinks

2015-07-12 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10494 Wayne Davison changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---