diff options
-rw-r--r-- | TODO.org | 1 | ||||
-rw-r--r-- | src/e_externs_pipes.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -8,6 +8,7 @@ ** DONE [#A] Multiline pipes (ls |) ** TODO [#A] Go full tok + quotes ** TODO [#A] ls qweqwe; echo $? <---- reparse +** TODO [#A] <>> ** DONE [#B] forked write(2) stuff on cd ** DONE [#B] Multiline && || ** DONE [#B] ./qwe.sh <=== handle bad shebang diff --git a/src/e_externs_pipes.c b/src/e_externs_pipes.c index 320b31d..6f24435 100644 --- a/src/e_externs_pipes.c +++ b/src/e_externs_pipes.c @@ -44,7 +44,7 @@ static uint8_t } static void - e_extern_child(const char *fullpath, + e_pipe_child(const char *fullpath, t_com *ptr, t_msh *msh) { @@ -119,7 +119,7 @@ static void close(fd[j][FT_READ_END]); j++; } - e_extern_child(fullpath[i], head->com, msh); + e_pipe_child(fullpath[i], head->com, msh); } head = head->next; i++; |