summaryrefslogtreecommitdiffstats
path: root/src/ft_exec.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_exec.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ft_exec.c b/src/ft_exec.c
index 7177f5b..31fcaf2 100644
--- a/src/ft_exec.c
+++ b/src/ft_exec.c
@@ -10,9 +10,6 @@ ft_exec(char **app)
i = 0;
while (app[i])
i++;
- if (i < 2)
- return (execve(app[0] + 2, NULL, NULL));
- else
- return (execve(app[0] + 2, &app[1], NULL));
+ return (execve(app[0] + 2, app, NULL));
return (0);
}