summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO.org1
-rw-r--r--src/e_externs_pipes.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/TODO.org b/TODO.org
index f43f9b0..5a247e5 100644
--- a/TODO.org
+++ b/TODO.org
@@ -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++;