]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/patches/bash/bash32-030
Merge branch 'strongswan-5' into thirteen
[people/teissler/ipfire-2.x.git] / src / patches / bash / bash32-030
1 BASH PATCH REPORT
2 =================
3
4 Bash-Release: 3.2
5 Patch-ID: bash32-030
6
7 Bug-Reported-by: Paul Eggert <eggert@cs.ucla.edu> Andreas Schwab <schwab@suse.de>
8 Bug-Reference-ID: <877il0nu84.fsf_-_@penguin.cs.ucla.edu> <m28x5gparz.fsf@igel.home>
9 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-11/msg00023.html http://lists.gnu.org/archive/html/bug-bash/2007-11/msg00022.htmlhttp://lists.gnu.org/archive/html/bug-bash/2007-11/msg00022.html
10
11 Bug-Description:
12
13 If redirections attached to a compound command fail, bash does not set the
14 command's exit status correctly. This only happens when the command is the
15 first in a sequential list.
16
17 Patch:
18
19 *** ../bash-3.2-patched/execute_cmd.c 2007-03-24 14:51:05.000000000 -0400
20 --- execute_cmd.c 2007-11-05 22:31:14.000000000 -0500
21 ***************
22 *** 615,619 ****
23 redirection_undo_list = (REDIRECT *)NULL;
24 dispose_exec_redirects ();
25 ! return (EXECUTION_FAILURE);
26 }
27
28 --- 620,624 ----
29 redirection_undo_list = (REDIRECT *)NULL;
30 dispose_exec_redirects ();
31 ! return (last_command_exit_value = EXECUTION_FAILURE);
32 }
33
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 29
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 30
47
48 #endif /* _PATCHLEVEL_H_ */
49
50