commit bash-20110429 snapshot

This commit is contained in:
Chet Ramey
2011-12-29 13:07:22 -05:00
parent 714122265d
commit af5751ec16
5 changed files with 31 additions and 10 deletions
+2 -2
View File
@@ -1694,7 +1694,7 @@ cpl_closeall ()
{
struct cpelement *cpe;
for (cpe = coproc_list.head; cpe; )
for (cpe = coproc_list.head; cpe; cpe = cpe->next)
coproc_close (cpe->coproc);
}
@@ -1704,7 +1704,7 @@ cpl_fdchk (fd)
{
struct cpelement *cpe;
for (cpe = coproc_list.head; cpe; )
for (cpe = coproc_list.head; cpe; cpe = cpe->next)
coproc_checkfd (cpe->coproc, fd);
}