bump version
[buildroot.git] / package / bash / bash32-008
blob7185f412ad65487460df1a3218d3621ca32a2822
1                              BASH PATCH REPORT
2                              =================
4 Bash-Release: 3.2
5 Patch-ID: bash32-008
7 Bug-Reported-by:        Linda Walsh <bash@tlinx.org>
8 Bug-Reference-ID:       <456041FD.8000605@tlinx.org>
9 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2006-11/msg00040.html
11 Bug-Description:
13 When checking pathnames from the command hash table (e.g., when the `checkhash'
14 shell option is enabled), a bug causes bash to delete and re-lookup each
15 command.
17 Patch:
19 *** bash-3.2-patched/findcmd.c  Wed Aug 17 16:49:54 2005
20 --- bash-3.2/findcmd.c  Fri Nov 24 10:48:37 2006
21 ***************
22 *** 309,313 ****
23       {
24         st = file_status (hashed_file);
25 !       if ((st ^ (FS_EXISTS | FS_EXECABLE)) != 0)
26         {
27           phash_remove (pathname);
28 --- 309,313 ----
29       {
30         st = file_status (hashed_file);
31 !       if ((st & (FS_EXISTS|FS_EXECABLE)) != (FS_EXISTS|FS_EXECABLE))
32         {
33           phash_remove (pathname);
34 *** bash-3.2/patchlevel.h       Thu Apr 13 08:31:04 2006
35 --- bash-3.2/patchlevel.h       Mon Oct 16 14:22:54 2006
36 ***************
37 *** 26,30 ****
38      looks for to find the patch level (for the sccs version string). */
39   
40 ! #define PATCHLEVEL 7
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 8
47   
48   #endif /* _PATCHLEVEL_H_ */