Displaying 9 results from an estimated 9 matches for "sviatoslav".
Did you mean:
svetoslav
2003 Feb 20
2
[Apt-rpm] I: [PATCH] 0.5.4cnc9: rsync method support
Sviatoslav Sviridov [mailto:svd@ns1.lintec.minsk.by] wrote:
>It would be good if attached patch will be included in upstream. This
>patch adds option --apt-support for rsync and with this option rsync
>will print some additional information about file being transfered. No
>program logic changed. H...
2003 Aug 28
1
Fw: Re: GZIP, ZIP, ISO, RPM files and rsync, tar, cpio
On Thu, Aug 28, 2003 at 12:51:16PM +0300, Sviatoslav Sviridov/Lintec Project wrote:
>
> Sorry for direct reply, but mail server at samba.org blocks my messages.
Postmasters, Martin, For your consideration.
> Begin forwarded message:
>
> Date: Thu, 28 Aug 2003 12:43:54 +0300
> From: Sviatoslav Sviridov/Lintec Project <svd@lint...
2003 Feb 01
0
Fw: Re: [Apt-rpm] I: [PATCH] 0.5.4cnc9: rsync method support
...option rsync
will print some additiona information about file being transfered. No
program logic changed. Having this option in rsync we can have apt with
rsync method support.
Begin forwarded message:
Date: Fri, 31 Jan 2003 11:34:14 -0200
From: Gustavo Niemeyer <niemeyer@conectiva.com>
To: Sviatoslav Sviridov <svd@lintec.minsk.by>
Cc: apt-rpm@distro.conectiva.com.br
Subject: Re: [Apt-rpm] I: [PATCH] 0.5.4cnc9: rsync method support
> There was 2 patches for rsync: one fixes bug wich causes to recursion
> inside rsync, this applied to upstream. Other required only for apt's
>...
2003 Jan 28
0
Announcing rsync release 2.5.6
...ses and sometimes return an exit code of 0 instead of showing
an error. (David R. Staples, Dave Dykstra)
* Fixed bug in --copy-unsafe-links that caused it to be completely
broken. (Dave Dykstra)
* Prevent infinite recursion in cleanup code under certain circumstances.
(Sviatoslav Sviridov and Marc Espie)
* Fixed a bug that prevented rsync from creating intervening directories
when --relative-paths/-R is set. (Craig Barratt)
* Prevent "Connection reset by peer" messages from Cygwin. (Randy O'Meara)
INTERNAL:
* Many code cleanups and imp...
2003 Jan 21
6
Please test rsync-2.5.6pre2
...* Fixed the file-name duplicate-removal code when dealing with multiple
dups in a row. (Wayne Davison)
* Fixed bug in --copy-unsafe-links that caused it to be completely
broken. (Dave Dykstra)
* Prevent infinite recursion in cleanup code under certain circumstances.
(Sviatoslav Sviridov)
* Fixed a bug that prevented rsync from creating intervening directories
when --relative-paths/-R is set. (Craig Barratt)
INTERNAL:
* Portability fixes. (Dave Dykstra and Wayne Davison)
- Dave Dykstra
-------------- next part --------------
A non-text attachment was...
2003 Oct 31
2
rsync via ssh dumps core after being interrupted
Hi,
I'm using rsync (version 2.5.5 protocol version 26) on RedHat Linux 8.0:
rsync -ae ssh /tmp/junk/ otherhost:/tmp/junk
If I interrupt rsync (^C), sometimes rsync on the other host dumps core
or uses all (!) available memory and all CPU.
gdb on a core file:
$ gdb -q /usr/bin/rsync /tmp/core.4576
(no debugging symbols found)...
Core was generated by `/usr/bin/rsync --server --sender
2002 Oct 09
2
rsync-2.5.5 memory eater problem
Hi,
we ran into a little problem with rsync-2.5.5.
Setup: you run rsync-2.5.5 as normal rsync over ssh
(ie. not connecting to a rsync server). If you start
such a rsync but interrupt the pulling process with Ctrl-C,
the process on the other side may start to allocate all
memory on the remote machine.
As fa as we have analyzed the problem, the remote rsync
process wants to issue a error message
2003 Jan 13
4
Please test rsync-2.5.6pre1
The first rsync-2.5.6 pre-release version is now available at:
http://rsync.samba.org/ftp/rsync/preview/rsync-2.5.6pre1.tar.gz
ftp://rsync.samba.org/pub/rsync/preview/rsync-2.5.6pre1.tar.gz
rsync://rsync.samba.org/ftp/rsync/preview/rsync-2.5.6pre1.tar.gz
There's also a corresponding '.sig' file that contains a gpg signature
of the file; the public key is available on the
2002 Oct 13
1
rsync 2.5.5 core dump
-----BEGIN PGP SIGNED MESSAGE-----
I added the following code to log_exit():
void log_exit(int code, const char *file, int line)
{
static int error_count=0;
if(error_count++ > 10) {
abort();
}
To force it to bail earlier instead of overflowing the stack.
As you can see at frame #50, it is trying to log that the connection went
away unexpectantly.