diff options
author | Steve Price <steve@FreeBSD.org> | 1999-12-29 08:47:55 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-12-29 08:47:55 +0000 |
commit | aef431088bbc287e39e670e4b98c17c4fa6935bd (patch) | |
tree | 518062c715624b3e43281ec49f1076698cffc601 /shells | |
parent | 066cac2a527cfdbeede3bac1e1b3423bf5f33a38 (diff) | |
download | ports-aef431088bbc287e39e670e4b98c17c4fa6935bd.tar.gz ports-aef431088bbc287e39e670e4b98c17c4fa6935bd.zip |
Notes
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash/files/patch-af | 21 | ||||
-rw-r--r-- | shells/bash2/files/patch-af | 21 | ||||
-rw-r--r-- | shells/bash3/files/patch-af | 21 |
3 files changed, 63 insertions, 0 deletions
diff --git a/shells/bash/files/patch-af b/shells/bash/files/patch-af new file mode 100644 index 000000000000..00c122e05ec0 --- /dev/null +++ b/shells/bash/files/patch-af @@ -0,0 +1,21 @@ +--- 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; diff --git a/shells/bash2/files/patch-af b/shells/bash2/files/patch-af new file mode 100644 index 000000000000..00c122e05ec0 --- /dev/null +++ b/shells/bash2/files/patch-af @@ -0,0 +1,21 @@ +--- 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; diff --git a/shells/bash3/files/patch-af b/shells/bash3/files/patch-af new file mode 100644 index 000000000000..00c122e05ec0 --- /dev/null +++ b/shells/bash3/files/patch-af @@ -0,0 +1,21 @@ +--- 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; |