]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/bash/bash43-006
24ff057a553d3165c91f4462481a9b42bce7a865
[ipfire-2.x.git] / src / patches / bash / bash43-006
1 BASH PATCH REPORT
2 =================
3
4 Bash-Release: 4.3
5 Patch-ID: bash43-006
6
7 Bug-Reported-by: Eduardo A . Bustamante Lopez <dualbus@gmail.com>
8 Bug-Reference-ID: <20140228170013.GA16015@dualbus.me>
9 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-02/msg00091.html
10
11 Bug-Description:
12
13 A shell that started with job control active but was not interactive left
14 the terminal in the wrong process group when exiting, causing its parent
15 shell to get a stop signal when it attempted to read from the terminal.
16
17 Patch (apply with `patch -p0'):
18
19 *** ../bash-4.3/jobs.c 2014-01-10 09:05:34.000000000 -0500
20 --- jobs.c 2014-03-02 18:05:09.000000000 -0500
21 ***************
22 *** 4375,4379 ****
23 end_job_control ()
24 {
25 ! if (interactive_shell) /* XXX - should it be interactive? */
26 {
27 terminate_stopped_jobs ();
28 --- 4375,4379 ----
29 end_job_control ()
30 {
31 ! if (interactive_shell || job_control) /* XXX - should it be just job_control? */
32 {
33 terminate_stopped_jobs ();
34 *** ../bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500
35 --- patchlevel.h 2014-03-20 20:01:28.000000000 -0400
36 ***************
37 *** 26,30 ****
38 looks for to find the patch level (for the sccs version string). */
39
40 ! #define PATCHLEVEL 5
41
42 #endif /* _PATCHLEVEL_H_ */
43 --- 26,30 ----
44 looks for to find the patch level (for the sccs version string). */
45
46 ! #define PATCHLEVEL 6
47
48 #endif /* _PATCHLEVEL_H_ */