diff options
Diffstat (limited to 'misc/screen/patches')
-rw-r--r-- | misc/screen/patches/patch-aa | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/misc/screen/patches/patch-aa b/misc/screen/patches/patch-aa new file mode 100644 index 00000000000..7f0cef36d8b --- /dev/null +++ b/misc/screen/patches/patch-aa @@ -0,0 +1,52 @@ +$NetBSD: patch-aa,v 1.8 2002/05/21 17:57:04 tron Exp $ + +--- pty.c.orig Mon Feb 11 13:44:18 2002 ++++ pty.c Tue May 21 19:55:36 2002 +@@ -318,6 +318,47 @@ + + /***************************************************************/ + ++#if defined(__NetBSD__) && !defined(PTY_DONE) ++#define PTY_DONE ++ ++#include <sys/param.h> ++ ++#include <string.h> ++#include <util.h> ++ ++int ++OpenPTY(ttyn) ++char **ttyn; ++{ ++ int m, s, f; ++ char *t; ++ ++ do ++ { ++ if (openpty(&m, &s, TtyName, NULL, NULL) < 0) ++ return -1; ++ close(m); ++ close(s); ++ ++ strcpy(PtyName, TtyName); ++ t = strrchr(PtyName, '/'); ++ if ((t == NULL ) || (*++t != 't')) ++ return -1; ++ *t = 'p'; ++ ++ f = open(PtyName, O_RDWR | O_NOCTTY); ++ } ++ while (f < 0); ++ ++ initmaster(f); ++ *ttyn = TtyName; ++ ++ return f; ++} ++#endif ++ ++/***************************************************************/ ++ + #ifndef PTY_DONE + int + OpenPTY(ttyn) |