summaryrefslogtreecommitdiff
path: root/net/rdist6/files/patch-ah
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2014-07-29 01:59:16 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2014-07-29 01:59:16 +0000
commit69ea23ed7175d5c34a21bba1ef9262f311c69284 (patch)
treee2e604e83659be7f58596e80b3cf18e9d7d06dae /net/rdist6/files/patch-ah
parentStage net-mgmt/routers2 and cleanup (diff)
Rename net/ patch-xy patches to reflect the files they modify.
Approve by: portmgr (not really, but one of these is modifying an unstaged port)
Notes
Notes: svn path=/head/; revision=363285
Diffstat (limited to 'net/rdist6/files/patch-ah')
-rw-r--r--net/rdist6/files/patch-ah27
1 files changed, 0 insertions, 27 deletions
diff --git a/net/rdist6/files/patch-ah b/net/rdist6/files/patch-ah
deleted file mode 100644
index 5e08b75206f2..000000000000
--- a/net/rdist6/files/patch-ah
+++ /dev/null
@@ -1,27 +0,0 @@
---- src/rshrcmd.c Mon Nov 9 23:15:07 1998
-+++ src/rshrcmd.c Tue Jan 18 14:53:29 2005
-@@ -42,5 +42,4 @@
- {
- int cpid;
-- struct hostent *hp;
- int sp[2];
-
-@@ -48,11 +47,4 @@
- if (fd2p != 0)
- return -1;
-- /* validate remote hostname. */
-- hp = gethostbyname(*ahost);
-- if (hp == 0) {
-- error("%s: unknown host", *ahost);
-- return -1;
-- }
-- /* *ahost = hp->h_name;*/ /* This makes me nervous. */
-
- /* get a socketpair we'll use for stdin and stdout. */
-@@ -72,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);