]> git.pld-linux.org Git - packages/bash.git/blob - bash32-008
- up to 4.0.10
[packages/bash.git] / bash32-008
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release: 3.2
5 Patch-ID: bash32-008
6
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
10
11 Bug-Description:
12
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.
16
17 Patch:
18
19 *** ../bash-3.2-patched/findcmd.c       Wed Aug 17 16:49:54 2005
20 --- 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 --- 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_ */
This page took 0.03006 seconds and 3 git commands to generate.