Skip to content

Commit 76bb456

Browse files
author
Chet Ramey
committed
Bash-4.4 patch 11
1 parent 5b9762d commit 76bb456

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
2626
looks for to find the patch level (for the sccs version string). */
2727

28-
#define PATCHLEVEL 10
28+
#define PATCHLEVEL 11
2929

3030
#endif /* _PATCHLEVEL_H_ */

sig.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,8 @@ termsig_handler (sig)
585585
#if defined (JOB_CONTROL)
586586
if (sig == SIGHUP && (interactive || (subshell_environment & (SUBSHELL_COMSUB|SUBSHELL_PROCSUB))))
587587
hangup_all_jobs ();
588-
end_job_control ();
588+
if ((subshell_environment & (SUBSHELL_COMSUB|SUBSHELL_PROCSUB)) == 0)
589+
end_job_control ();
589590
#endif /* JOB_CONTROL */
590591

591592
#if defined (PROCESS_SUBSTITUTION)

0 commit comments

Comments
 (0)