summaryrefslogtreecommitdiff
path: root/shells/bash3/files/patch-af
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-03-17 02:18:05 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-03-17 02:18:05 +0000
commit6c59170bca7b079bb699aa4fe6a5bf790e0dea6e (patch)
tree83a5fb38fba33a2f9e88f2df143b28d6ebc3b483 /shells/bash3/files/patch-af
parentRevert to rev. 1.4, which will restore some bugs in the previous version (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_0_0'.release/4.0.0
Diffstat (limited to 'shells/bash3/files/patch-af')
-rw-r--r--shells/bash3/files/patch-af21
1 files changed, 0 insertions, 21 deletions
diff --git a/shells/bash3/files/patch-af b/shells/bash3/files/patch-af
deleted file mode 100644
index 00c122e05ec0..000000000000
--- a/shells/bash3/files/patch-af
+++ /dev/null
@@ -1,21 +0,0 @@
---- execute_cmd.c.orig Tue Dec 28 19:51:28 1999
-+++ execute_cmd.c Tue Dec 28 19:52:15 1999
-@@ -2207,7 +2207,8 @@
- static int
- execute_null_command (redirects, pipe_in, pipe_out, async, old_last_command_subst_pid)
- REDIRECT *redirects;
-- int pipe_in, pipe_out, async, old_last_command_subst_pid;
-+ int pipe_in, pipe_out, async;
-+ pid_t old_last_command_subst_pid;
- {
- if (pipe_in != NO_PIPE || pipe_out != NO_PIPE || async)
- {
-@@ -2955,7 +2956,7 @@
- {
- char *pathname, *command, **args;
- int nofork;
-- int pid;
-+ pid_t pid;
-
- nofork = (cmdflags & CMD_NO_FORK); /* Don't fork, just exec, if no pipes */
- pathname = words->word->word;