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
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
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
>
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
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
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 +
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
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)
+