]> git.pld-linux.org Git - packages/bash.git/blame - bash40-011
- up to 4.0.33
[packages/bash.git] / bash40-011
CommitLineData
bd03fb8f
AM
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 4.0
5Patch-ID: bash40-011
6
7Bug-Reported-by: Matt Zyzik <Matt@ice.filescope.com>n
8Bug-Reference-ID: <20090312015018.C00741383ED@ice.filescope.com>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-03/msg00092.html
10
11Bug-Description:
12
13When using the new |& operator following a simple command with a redirection,
14the redirection of stderr through the pipe was not performed under certain
15circumstances.
16
17Patch:
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.136845 seconds and 4 git commands to generate.