summaryrefslogtreecommitdiff
path: root/shells/esh/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'shells/esh/files/patch-ab')
-rw-r--r--shells/esh/files/patch-ab18
1 files changed, 0 insertions, 18 deletions
diff --git a/shells/esh/files/patch-ab b/shells/esh/files/patch-ab
deleted file mode 100644
index 46e36903ba95..000000000000
--- a/shells/esh/files/patch-ab
+++ /dev/null
@@ -1,18 +0,0 @@
---- esh.c.orig Thu May 20 14:13:25 1999
-+++ esh.c Thu May 20 14:22:34 1999
-@@ -657,7 +656,9 @@
-
- void job_wait(job_t* job) {
- int tmp;
-+ sig_t oldsig;
-
-+ oldsig = signal(SIGCHLD, SIG_DFL);
- if (interactive) {
- waitpid(job->last_pid, &tmp, WUNTRACED);
-
-@@ -676,6 +677,7 @@
- } else {
- waitpid(job->last_pid, &tmp, WUNTRACED);
- }
-+ signal(SIGCHLD, oldsig);
- }