Re: Adding support for versioned files in rsync

2003-10-14 Thread Sviatoslav Sviridov
be nice to allow option --compare-dest work with regular file, not only directory. It will be useful for example for rsyncing iso images, etc. -- Sviatoslav Sviridov [mailto:[EMAIL PROTECTED] [ICQ#10845380] [Lintec Project] [MLUG] -- Somebody's terminal is dropping bits. I found a pile of them

Re: [Apt-rpm] I: [PATCH] 0.5.4cnc9: rsync method support

2003-02-21 Thread Sviatoslav Sviridov
On 21 Feb 2003 21:41:25 +1100 Donovan Baarda <[EMAIL PROTECTED]> wrote: > On Fri, 2003-02-21 at 18:42, Sviatoslav Sviridov wrote: > [...] > > And other thing I want to discuss: now rsync designed as standalone > > program, but it will be good if library with protocol im

Re: [Apt-rpm] I: [PATCH] 0.5.4cnc9: rsync method support

2003-02-20 Thread Sviatoslav Sviridov
On Wed, 19 Feb 2003 13:53:17 -0800 jw schultz <[EMAIL PROTECTED]> wrote: > On Wed, Feb 19, 2003 at 12:25:43PM -0500, Paul Green wrote: > > Sviatoslav Sviridov [mailto:[EMAIL PROTECTED]] wrote: > > >It would be good if attached patch will be included in upstream. This >

Fw: Re: [Apt-rpm] I: [PATCH] 0.5.4cnc9: rsync method support

2003-01-31 Thread Sviatoslav Sviridov
method support. Begin forwarded message: Date: Fri, 31 Jan 2003 11:34:14 -0200 From: Gustavo Niemeyer <[EMAIL PROTECTED]> To: Sviatoslav Sviridov <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED] Subject: Re: [Apt-rpm] I: [PATCH] 0.5.4cnc9: rsync method support > There was 2 patches for r

[Feature request] Re: Please test rsync-2.5.6pre2

2003-01-21 Thread Sviatoslav Sviridov
On Mon, 20 Jan 2003 22:19:42 -0600 Dave Dykstra <[EMAIL PROTECTED]> wrote: > The second rsync-2.5.6 pre-release version is now available at: > > http://rsync.samba.org/ftp/rsync/preview/rsync-2.5.6pre2.tar.gz > ftp://rsync.samba.org/pub/rsync/preview/rsync-2.5.6pre2.tar.gz > rsync://r

Re: Please test rsync-2.5.6pre1

2003-01-15 Thread Sviatoslav Sviridov
Hello, It seems that bug with recursive calling of _exit_cleanup() is not fixed in this version. In log.c EPIPE is not hanled and this leads to recursive _exit_cleanup(). First patch I've made for this looks like: == cut == --- rsync-2.5.5/log.c 2002-02-18 20:51:12 +

Re: rsync 2.5.5 core dump

2002-10-14 Thread Sviatoslav Sviridov
lace. I think, it's better to avoid recoursive calling of exit_cleanup(), here is main problem. -- Sviatoslav Sviridov [mailto:[EMAIL PROTECTED]] [ICQ#10845380] [Lintec Project] [MLUG] -- Beware the one behind you. rsync-2.5.5-alt-cleanup.patch Description: Binary data

Re: rsync-2.5.5 memory eater problem

2002-10-09 Thread Sviatoslav Sviridov
c-2.5.5/cleanup.c 2002-03-27 02:03:13 +0100 +++ rsync-2.5.5.cleanup/cleanup.c 2002-07-11 12:53:52 +0200 @@ -43,6 +43,11 @@ int ocode = code; extern int keep_partial; extern int log_got_error; + static int inside_cleanup = 0; + + if (inside_cleanup != 0) +