You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
914 B

  1. Index: bash-4.4/patchlevel.h
  2. ===================================================================
  3. --- bash-4.4.orig/patchlevel.h
  4. +++ bash-4.4/patchlevel.h
  5. @@ -25,6 +25,6 @@
  6. regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
  7. looks for to find the patch level (for the sccs version string). */
  8. -#define PATCHLEVEL 10
  9. +#define PATCHLEVEL 11
  10. #endif /* _PATCHLEVEL_H_ */
  11. Index: bash-4.4/sig.c
  12. ===================================================================
  13. --- bash-4.4.orig/sig.c
  14. +++ bash-4.4/sig.c
  15. @@ -585,7 +585,8 @@ termsig_handler (sig)
  16. #if defined (JOB_CONTROL)
  17. if (sig == SIGHUP && (interactive || (subshell_environment & (SUBSHELL_COMSUB|SUBSHELL_PROCSUB))))
  18. hangup_all_jobs ();
  19. - end_job_control ();
  20. + if ((subshell_environment & (SUBSHELL_COMSUB|SUBSHELL_PROCSUB)) == 0)
  21. + end_job_control ();
  22. #endif /* JOB_CONTROL */
  23. #if defined (PROCESS_SUBSTITUTION)