Re: rsync 2.6.0: ./configure goes into a loop

2004-01-05 Thread John Van Essen
On Sun, 4 Jan 2004, Phil Howard [EMAIL PROTECTED] wrote: On Sat, Jan 03, 2004 at 01:00:09PM -0800, Wayne Davison wrote: | On Sat, Jan 03, 2004 at 02:11:04AM -0600, Phil Howard wrote: | After doing a fresh extraction of the source for 2.6.0, I execute | ./configure and it enters a loop with

Re: TODO hardlink performance optimizations

2004-01-05 Thread John Van Essen
On Sun, 4 Jan 2004, jw schultz [EMAIL PROTECTED] wrote: On Sun, Jan 04, 2004 at 06:35:03AM -0600, John Van Essen wrote: I've modified hlink.c to use a list of file struct pointers instead of copies of the actual file structs themselves, so that will save memory. I'll submit that patch for

Re: TODO hardlink performance optimizations

2004-01-05 Thread jw schultz
On Mon, Jan 05, 2004 at 01:44:37AM -0600, John Van Essen wrote: On Sun, 4 Jan 2004, jw schultz [EMAIL PROTECTED] wrote: On Sun, Jan 04, 2004 at 06:35:03AM -0600, John Van Essen wrote: I've modified hlink.c to use a list of file struct pointers instead of copies of the actual file

Re: TODO hardlink performance optimizations

2004-01-05 Thread John Van Essen
On Sun, 4 Jan 2004 16:23:17 -0800, jw schultz [EMAIL PROTECTED] wrote: On Sun, Jan 04, 2004 at 05:30:03AM -0800, jw schultz wrote: On Sun, Jan 04, 2004 at 06:35:03AM -0600, John Van Essen wrote: I've modified hlink.c to use a list of file struct pointers instead of copies of the actual file

rsync for windows 2000

2004-01-05 Thread Tom Miller
I was directed to rsync through a link via Cpan, where the web-page to NT gave me a useful information page on how to setup Windows NT. But the link to the binarys wouldn't allow an anonymous logon using 2 different ftp clients (bullet ftp usually works with anonymous logons). A google search

Re: getting rid of permission denied partial transfer errors

2004-01-05 Thread Sayan
Jim Salter wrote: yeah, except that the directory is not 700 but 600, so even user backup cannot traverse it... but root can. Have you considered using sudo such that the fileserver isn't actually logging into the backupserver as root, but only logging in as a heavily *un*privileged account

2.6.0 fails to configure if --disable-ipv6 is specified...

2004-01-05 Thread Peter Fales
...because the code which sets $EGREP is not hit in this case -- Peter Fales Lucent Technologies, Room 1C-436 N9IYJ 2000 N Naperville Rd PO Box 3033 internet: [EMAIL PROTECTED] Naperville, IL 60566-7033

Re: TODO hardlink performance optimizations

2004-01-05 Thread jw schultz
On Mon, Jan 05, 2004 at 05:34:04AM -0600, John Van Essen wrote: On Sun, 4 Jan 2004 16:23:17 -0800, jw schultz [EMAIL PROTECTED] wrote: On Sun, Jan 04, 2004 at 05:30:03AM -0800, jw schultz wrote: I'm noodling on the idea of purging the hlink_list of files that don't have links. I'm all

Re: 2.6.0 fails to configure if --disable-ipv6 is specified...

2004-01-05 Thread Andrew
I concur, I have just experienced the same issue using FreeBSD 4.9, removing the switch avoids the problem. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Byte order bug in token.c:send_deflated_token ?

2004-01-05 Thread Jay Fenlason
I was looking at send_deflated_token() when I noticed that it does int n, r; ... write_batch_delta_file((char *)n,sizeof(char)); temp_byte = (char)(n 8); write_batch_delta_file(temp_byte,sizeof(temp_byte)); Now on a little-endian machine n will equal the address of the low-order byte of n,

Re: TODO hardlink performance optimizations

2004-01-05 Thread Wayne Davison
On Mon, Jan 05, 2004 at 01:12:16PM -0800, jw schultz wrote: - init_hard_links() sets nlinks in file_struct. I assume you mean by counting adjacent runs of identical inodes after the sort is done (while eliminating single-item runs from the list at the same time). I'd like to avoid adding the

Re: TODO hardlink performance optimizations

2004-01-05 Thread jw schultz
On Mon, Jan 05, 2004 at 02:46:52PM -0800, Wayne Davison wrote: On Mon, Jan 05, 2004 at 01:12:16PM -0800, jw schultz wrote: - init_hard_links() sets nlinks in file_struct. I assume you mean by counting adjacent runs of identical inodes after the sort is done (while eliminating single-item