source: npl/system/bash/bash-4.3-patches/bash43-006 @ 4e95a55

perl-5.22
Last change on this file since 4e95a55 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 1.4 KB
Line 
1                             BASH PATCH REPORT
2                             =================
3
4Bash-Release:   4.3
5Patch-ID:       bash43-006
6
7Bug-Reported-by:        Eduardo A . Bustamante Lopez <dualbus@gmail.com>
8Bug-Reference-ID:       <20140228170013.GA16015@dualbus.me>
9Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2014-02/msg00091.html
10
11Bug-Description:
12
13A shell that started with job control active but was not interactive left
14the terminal in the wrong process group when exiting, causing its parent
15shell to get a stop signal when it attempted to read from the terminal.
16
17Patch (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_ */
Note: See TracBrowser for help on using the repository browser.