summaryrefslogtreecommitdiff
path: root/net/rdist6
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-12-10 23:38:54 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-12-10 23:38:54 +0000
commit0e223d0197774983a79259a3bbda7fa1111802ba (patch)
tree378860c0f1405f840eb5059a27f269c782c64f62 /net/rdist6
parenttreat freebsd3.0 just like freebsd2.x (diff)
Don't connect the network socket to stderr, this achieves nothing, but
prevents the connecting daemon (eg: ssh) asking for passwords etc. Obtained from: ssh FAQ, Thomas Koenig <ciw.uni-karlsruhe.de>
Notes
Notes: svn path=/head/; revision=4920
Diffstat (limited to 'net/rdist6')
-rw-r--r--net/rdist6/files/patch-ah9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/rdist6/files/patch-ah b/net/rdist6/files/patch-ah
new file mode 100644
index 000000000000..19ded6be538b
--- /dev/null
+++ b/net/rdist6/files/patch-ah
@@ -0,0 +1,9 @@
+--- src/rshrcmd.c.dist Tue Dec 12 08:20:56 1995
++++ src/rshrcmd.c Wed Dec 11 07:14:13 1996
+@@ -64,5 +64,5 @@
+ sp[0]. */
+ (void) close(sp[0]);
+- if (dup2(sp[1], 0) < 0 || dup2(0,1) < 0 || dup2(0, 2) < 0) {
++ if (dup2(sp[1], 0) < 0 || dup2(0,1) < 0) {
+ error("dup2 failed: %s.", SYSERR);
+ _exit(255);