]> git.pld-linux.org Git - packages/bash.git/blame - bash32-008
- up to 3.2.39
[packages/bash.git] / bash32-008
CommitLineData
4112a3e1
ER
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 3.2
5Patch-ID: bash32-008
6
7Bug-Reported-by: Linda Walsh <bash@tlinx.org>
8Bug-Reference-ID: <456041FD.8000605@tlinx.org>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-11/msg00040.html
10
11Bug-Description:
12
13When checking pathnames from the command hash table (e.g., when the `checkhash'
14shell option is enabled), a bug causes bash to delete and re-lookup each
15command.
16
17Patch:
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.055574 seconds and 4 git commands to generate.