Re: Modified --files-from patch

2003-03-30 Thread Wayne Davison
On Sun, Mar 30, 2003 at 04:30:34PM -0800, jw schultz wrote: > is > rsync --from0 --files-from=- > the same as > rsync --files-from=- --from0 Yes, it is the same. ..wayne.. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://

Re: Modified --files-from patch

2003-03-30 Thread jw schultz
On Sun, Mar 30, 2003 at 04:20:18PM -0800, Wayne Davison wrote: > On Sun, Mar 30, 2003 at 03:53:15PM -0800, jw schultz wrote: > > What i had meant by the from0 was that each of the --*from options > > would have a from0 counterpart so that null terminated lists and > > newline terminated lists could

Re: Modified --files-from patch

2003-03-30 Thread Wayne Davison
On Sun, Mar 30, 2003 at 03:53:15PM -0800, jw schultz wrote: > What i had meant by the from0 was that each of the --*from options > would have a from0 counterpart so that null terminated lists and > newline terminated lists could co-exist. Yeah, I understood that. I didn't think it was necessary a

Re: Modified --files-from patch

2003-03-30 Thread jw schultz
On Sun, Mar 30, 2003 at 03:19:42PM -0800, Wayne Davison wrote: > Since no one had any objections, I went ahead and committed the > --files-from changes into CVS. Let me know if you encounter any > problems. That's fine. I had meant to offer one criticism however. What i had meant by the from0 w

Re: Modified --files-from patch

2003-03-30 Thread Wayne Davison
Since no one had any objections, I went ahead and committed the --files-from changes into CVS. Let me know if you encounter any problems. ..wayne.. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-quest

Re: Modified --files-from patch

2003-03-24 Thread jw schultz
On Mon, Mar 24, 2003 at 09:00:33AM -0800, Wayne Davison wrote: > On Mon, Mar 24, 2003 at 02:45:33PM +0100, Paul Slootman wrote: > > Does this patch transfer the files in the order given? > > No, at least not at the moment. I suppose that if -r wasn't specified > that the code could avoid the sort

Re: Modified --files-from patch

2003-03-24 Thread Wayne Davison
On Mon, Mar 24, 2003 at 02:45:33PM +0100, Paul Slootman wrote: > Does this patch transfer the files in the order given? No, at least not at the moment. I suppose that if -r wasn't specified that the code could avoid the sort for both the --files-from mode and the normal mode where files are speci

Re: Modified --files-from patch

2003-03-24 Thread Paul Slootman
One question: Does this patch transfer the files in the order given? There's a bug report on the debian version about the fact that rsync doesn't transfer the files in the given order, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=160982 I had already added a note that depending on rsync n

Re: Modified --files-from patch

2003-03-23 Thread Wayne Davison
On Sat, Mar 22, 2003 at 11:21:28AM -0800, Wayne Davison wrote: > - I need to ensure that the user's input data doesn't contain a line >of just "" or the transfer will get messed up (and this may >well allow an attack on a server daemon). While I was working on this, I decided the easi