2.5.6, since no-one reported problems.
New: can use ssh transport in server mode !
This commit is contained in:
parent
76ec09dba3
commit
865b936464
@ -1,11 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.36 2002/12/22 14:56:28 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.37 2003/02/20 10:52:45 espie Exp $
|
||||
|
||||
COMMENT= "mirroring/synchronization over low bandwidth links"
|
||||
|
||||
DISTNAME= rsync-2.5.5
|
||||
DISTNAME= rsync-2.5.6
|
||||
CATEGORIES= net
|
||||
HOMEPAGE= http://rsync.samba.org/
|
||||
PKGNAME= ${DISTNAME}p0
|
||||
|
||||
MAINTAINER= Marc Espie <espie@openbsd.org>
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (rsync-2.5.5.tar.gz) = b34b5a5eed243fe18b667e2c1d34b3b6
|
||||
RMD160 (rsync-2.5.5.tar.gz) = 9431298889d0c548b9045c7d4ed3241f04851e46
|
||||
SHA1 (rsync-2.5.5.tar.gz) = b84dbaedcb8b0c1c6006a053e32b5629df7f458d
|
||||
MD5 (rsync-2.5.6.tar.gz) = ec39fcea433df4d6a3a4e0896c655535
|
||||
RMD160 (rsync-2.5.6.tar.gz) = 9c66ec444806a1d45b512982fbe1e83e8b7c13e7
|
||||
SHA1 (rsync-2.5.6.tar.gz) = ae64d0f6a22ac6f45ccd1258e80d17a35b28d798
|
||||
|
@ -1,16 +0,0 @@
|
||||
$OpenBSD: patch-cleanup_c,v 1.1 2002/12/14 18:06:58 espie Exp $
|
||||
--- cleanup.c.orig Sat Dec 14 18:55:23 2002
|
||||
+++ cleanup.c Sat Dec 14 18:55:55 2002
|
||||
@@ -43,6 +43,12 @@ void _exit_cleanup(int code, const char
|
||||
int ocode = code;
|
||||
extern int keep_partial;
|
||||
extern int log_got_error;
|
||||
+ static int in_cleanup = 0;
|
||||
+
|
||||
+ /* forbid recursive calls */
|
||||
+ if (in_cleanup)
|
||||
+ return;
|
||||
+ in_cleanup = 1;
|
||||
|
||||
signal(SIGUSR1, SIG_IGN);
|
||||
signal(SIGUSR2, SIG_IGN);
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.5 2002/04/19 11:58:09 espie Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.6 2003/02/20 10:52:45 espie Exp $
|
||||
bin/rsync
|
||||
man/man1/rsync.1
|
||||
man/man5/rsyncd.conf.5
|
||||
|
Loading…
Reference in New Issue
Block a user