From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- core/bash/bash53-001 | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 core/bash/bash53-001 (limited to 'core/bash/bash53-001') diff --git a/core/bash/bash53-001 b/core/bash/bash53-001 new file mode 100644 index 0000000..17c1d89 --- /dev/null +++ b/core/bash/bash53-001 @@ -0,0 +1,48 @@ + BASH PATCH REPORT + ================= + +Bash-Release: 5.3 +Patch-ID: bash53-001 + +Bug-Reported-by: John Sidles +Bug-Reference-ID: +Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2025-07/msg00035.html + +Bug-Description: + +In posix mode, `wait -n' with pid arguments does not restrict the set of +processes it considers to those arguments. + +Patch (apply with `patch -p0'): + +*** ../bash-5.3/jobs.c Fri Mar 7 18:48:44 2025 +--- jobs.c Mon Jul 14 10:25:13 2025 +*************** +*** 3539,3543 **** + one in bgpids. We can do this in posix mode because we'll remove any + one we find from the table, preserving existing semantics. */ +! if (posixly_correct && (t = bgp_findone ())) + { + pid = t->pid; +--- 3539,3543 ---- + one in bgpids. We can do this in posix mode because we'll remove any + one we find from the table, preserving existing semantics. */ +! if (posixly_correct && (flags & JWAIT_WAITING) == 0 && (t = bgp_findone ())) + { + pid = t->pid; + +*** ../bash-5.3/patchlevel.h 2020-06-22 14:51:03.000000000 -0400 +--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400 +*************** +*** 26,30 **** + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 0 + + #endif /* _PATCHLEVEL_H_ */ +--- 26,30 ---- + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 1 + + #endif /* _PATCHLEVEL_H_ */ -- cgit v1.3.1