forked from Lainports/freebsd-ports
- Features: Possible use of sftp/sftp-server with older FreeBSD releases. Use a newer version independently from the Base system. Easier to test and fix possible security bugs. - Bugs: build of pam_ssm.so isn't be supported any more Any file named "cookie" can be deleted by this and any older "sshd" with X11 Forwarding.
12 lines
369 B
Text
12 lines
369 B
Text
--- ssh.c.orig Tue Apr 17 14:55:04 2001
|
|
+++ ssh.c Sat May 26 15:05:28 2001
|
|
@@ -199,6 +199,9 @@
|
|
log("Using rsh. WARNING: Connection will not be encrypted.");
|
|
/* Build argument list for rsh. */
|
|
i = 0;
|
|
+#ifndef _PATH_RSH
|
|
+#define _PATH_RSH "/usr/bin/rsh"
|
|
+#endif
|
|
args[i++] = _PATH_RSH;
|
|
/* host may have to come after user on some systems */
|
|
args[i++] = host;
|