On Tue, Dec 16, 2003 at 01:48:25PM -0500, Jim Salter wrote: > /home/jimbo/rsync/rsync-2.5.7/io.c:324: undefined reference to `Realloc'
You should be able to change this line in the patch: + buffer = Realloc(buffer, remaining); To this line: + buffer = realloc_array(buffer, char, remaining); and that should fix it. I'm working on updating the patch for the 2.6.0 release (which involves a lot more changes than this). ..wayne.. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html