]> git.pld-linux.org Git - packages/bash.git/blob - bash40-011
- up to 4.0.33
[packages/bash.git] / bash40-011
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release:   4.0
5 Patch-ID:       bash40-011
6
7 Bug-Reported-by:        Matt Zyzik <Matt@ice.filescope.com>n
8 Bug-Reference-ID:       <20090312015018.C00741383ED@ice.filescope.com>
9 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2009-03/msg00092.html
10
11 Bug-Description:
12
13 When using the new |& operator following a simple command with a redirection,
14 the redirection of stderr through the pipe was not performed under certain
15 circumstances.
16
17 Patch:
18
19 *** ../bash-4.0-patched/parse.y 2009-03-08 21:24:47.000000000 -0400
20 --- parse.y     2009-03-12 21:36:23.000000000 -0400
21 ***************
22 *** 1123,1127 ****
23                           REDIRECT *r;
24   
25 !                         tc = $1;
26                           rd.dest = 1;
27                           r = make_redirection (2, r_duplicating_output, rd);
28 --- 1123,1127 ----
29                           REDIRECT *r;
30   
31 !                         tc = $1->type == cm_simple ? (COMMAND *)$1->value.Simple : $1;
32                           rd.dest = 1;
33                           r = make_redirection (2, r_duplicating_output, rd);
34 *** ../bash-4.0/patchlevel.h    2009-01-04 14:32:40.000000000 -0500
35 --- patchlevel.h        2009-02-22 16:11:31.000000000 -0500
36 ***************
37 *** 26,30 ****
38      looks for to find the patch level (for the sccs version string). */
39   
40 ! #define PATCHLEVEL 10
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 11
47   
48   #endif /* _PATCHLEVEL_H_ */
49
This page took 0.025424 seconds and 3 git commands to generate.