Feature Req: multiple include / exclude from statments in rsyncd.conf

2001-03-17 Thread Scott Russell
All - I would like to see a patch so that multiple include from and exclude from statments can be used withing the rsyncd.conf file. Here's an example of what I'm doing that illustrates the need for this feature. [60GB] path = /home/ftp/pub comment = Basic mirror. Maximum of 60G

(fwd from dadok@kvados.cz) UNC names on win32 rsync

2001-03-17 Thread Martin Pool
> From: "Milan Dadok" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Subject: rsync patch > Date: Sat, 17 Mar 2001 21:31:54 +0100 > Hello > I'm to new to rsync. I compiled version rsync-2.4.6 on WinNT using CygWin. > Client mode works fine. After I setup rsync as server everytime I get on clien

Re: LFS support on AIX 4.3.3

2001-03-17 Thread Martin Pool
On 17 Mar 2001, Christopher Yeoh <[EMAIL PROTECTED]> wrote: > Hmmm. The following > > printf("seek to %jd\n", (intmax_t) foo); > > might do what you want. Its not in SUSv2 but is in the Austin drafts > so I'm not sure how widely implemented it is. That's neat. Thankyou. Sadly gcc 2.95.3 does

Re: Linux 2.2.16 through 2.2.18preX TCP hang bug triggered by rsync

2001-03-17 Thread kuznet
Hello! > What I don't see is how we could recode this Please, remember that most of the reports are not related to zero-window lockups. Recoding is not required at all. In fact, we have only two reports about locking up when talking to solaris, but lots of reports about locking due to logical l

Re: LFS support on AIX 4.3.3

2001-03-17 Thread Andrew Tridgell
> Speaking of this, does anyone know a portable way to get printf to > handle off_t values when they may be larger that a long? Is there > none? The best way I know of is what I used in other places in rsync, which is this: off_t foo = ; printf("seek to %.0f\n", (double)foo); I know us