forked from Lainports/freebsd-ports
rsync turns on blocking I/O mode if remote shell command is rsh (ie. matched RSYNC_RSH) to work around some broken rsh implementations on other platforms. The submitter of the rsh->ssh patches overloaded RSYNC_RSH for ssh. That turns out to be a Wrong Thing. This change implements the parallel RSYNC_SSH. PR: 26376 Submitted by: adrian
8 lines
181 B
C
8 lines
181 B
C
--- rsync.h.orig Sat Aug 19 06:10:39 2000
|
|
+++ rsync.h Sat Apr 7 23:31:00 2001
|
|
@@ -75,4 +75,5 @@
|
|
#define RSYNC_RSH "rsh"
|
|
#endif
|
|
+#define RSYNC_SSH "ssh"
|
|
|
|
#include <sys/types.h>
|