summaryrefslogtreecommitdiff
path: root/x11-toolkits/vte
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2002-10-26 04:33:15 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2002-10-26 04:33:15 +0000
commit5312001e787b13423378c8a2e319a9e12db0d8a3 (patch)
tree32b406bfc8ee73af1ff23fd3fe5924f6c91248a3 /x11-toolkits/vte
parentFix typos preventing correct package building. (diff)
This patch should have been removed in the last commit.
Submitted by: bento
Notes
Notes: svn path=/head/; revision=68857
Diffstat (limited to 'x11-toolkits/vte')
-rw-r--r--x11-toolkits/vte/files/patch-src_pty.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/x11-toolkits/vte/files/patch-src_pty.c b/x11-toolkits/vte/files/patch-src_pty.c
deleted file mode 100644
index bce98190b13f..000000000000
--- a/x11-toolkits/vte/files/patch-src_pty.c
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/pty.c.orig Wed Sep 11 02:10:46 2002
-+++ src/pty.c Sat Oct 5 21:07:48 2002
-@@ -19,9 +19,10 @@
- #ident "$Id: pty.c,v 1.25 2002/09/11 06:10:46 nalin Exp $"
- #include "../config.h"
- #include <sys/ioctl.h>
--#include <sys/socket.h>
- #include <sys/types.h>
-+#include <sys/socket.h>
- #include <sys/wait.h>
-+#include <sys/uio.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <limits.h>
-@@ -525,7 +526,7 @@
- msg.msg_iovlen = 1;
- msg.msg_control = control;
- msg.msg_controllen = sizeof(control);
-- ret = recvmsg(tunnel, &msg, MSG_NOSIGNAL);
-+ ret = recvmsg(tunnel, &msg, 0);
- if (ret == -1) {
- return;
- }