summaryrefslogtreecommitdiff
path: root/editors/mg2a/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'editors/mg2a/patches/patch-aa')
-rw-r--r--editors/mg2a/patches/patch-aa25
1 files changed, 0 insertions, 25 deletions
diff --git a/editors/mg2a/patches/patch-aa b/editors/mg2a/patches/patch-aa
deleted file mode 100644
index ad5b3155659..00000000000
--- a/editors/mg2a/patches/patch-aa
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2000/07/10 18:26:54 tron Exp $
-
---- sys/bsd/spawn.c.orig Sun Jul 3 10:51:00 1988
-+++ sys/bsd/spawn.c Wed May 31 16:36:30 2000
-@@ -38,7 +38,9 @@
- */
- /*ARGSUSED*/
- spawncli(f, n) {
-- register int pid, wpid, (*oqsig)(), (*oisig)(), omask;
-+/* register int pid, wpid, (*oqsig)(), (*oisig)(), omask; refling was here */
-+ register int pid, wpid, omask;
-+ register void (*oqsig)(), (*oisig)();
- union wait status;
-
- if (shellp == NULL) {
-@@ -83,7 +85,8 @@
- execl(shellp, "sh", "-i", NULL);
- _exit(0); /* Should do better! */
- }
-- while ((wpid=wait(&status))>=0 && wpid!=pid)
-+/* while ((wpid=wait(&status))>=0 && wpid!=pid) refling was here */
-+ while ((wpid=wait((int *)&status))>=0 && wpid!=pid)
- ;
- (void) signal(SIGQUIT, oqsig);
- (void) signal(SIGINT, oisig);