aboutsummaryrefslogtreecommitdiff
path: root/src/handle_redir.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/handle_redir.c')
-rw-r--r--src/handle_redir.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/handle_redir.c b/src/handle_redir.c
index 29bba92..e8a1010 100644
--- a/src/handle_redir.c
+++ b/src/handle_redir.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/18 18:34:51 by chuhlig #+# #+# */
-/* Updated: 2025/01/18 18:47:31 by chuhlig ### ########.fr */
+/* Updated: 2025/01/20 14:59:38 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -26,7 +26,7 @@ int handle_input_redirection(t_redirection *redir)
}
else if (redir->type == INPUT_LIMITER)
{
- fd = open_file("/tmp/heredoc_tmp", O_WRONLY | O_CREAT | O_TRUNC, 0644);
+ fd = open_file("/tmp/heredoc_tmp", O_WRONLY | O_TRUNC, 0644);
if (fd < 0)
return (-1);
write(fd, redir->specifier, ft_strlen(redir->specifier));
@@ -46,7 +46,7 @@ int handle_output_redirection(t_redirection *redir)
if (redir->type == OUTPUT_OVERRIDE)
{
- fd = open_file(redir->specifier, O_WRONLY | O_CREAT | O_TRUNC, 0644);
+ fd = open_file(redir->specifier, O_WRONLY | O_TRUNC, 0644);
if (fd < 0)
return (-1);
dup2(fd, STDOUT_FILENO);
@@ -54,7 +54,7 @@ int handle_output_redirection(t_redirection *redir)
}
else if (redir->type == OUTPUT_APPEND)
{
- fd = open_file(redir->specifier, O_WRONLY | O_CREAT | O_APPEND, 0644);
+ fd = open_file(redir->specifier, O_WRONLY | O_APPEND, 0644);
if (fd < 0)
return (-1);
dup2(fd, STDOUT_FILENO);