This commit is contained in:
Etienne Rey-bethbeder
2023-04-14 16:17:35 +02:00
parent 882a39fc94
commit 0b56e95868
12 changed files with 36 additions and 36 deletions

View File

@ -17,7 +17,7 @@ static int ft_quote_verif(const char *str)
{
if (ft_is_in_quote(str, ft_strlen(str)))
{
ft_eprintf("minishell: Quote is not closed\n");
ft_eprintf("bozoshell: Quote is not closed\n");
return (1);
}
else
@ -47,7 +47,7 @@ static int ft_pipe_is_alone(const char *str)
}
}
if (check == 0)
ft_eprintf("minishell: Pipe must be followed and %s",
ft_eprintf("bozoshell: Pipe must be followed and %s",
"preced by a command or redirection\n");
return (check == 0);
}
@ -70,7 +70,7 @@ static int ft_special_char_dub(const char *str)
if ((y > 2 && (str[i] == '>' || str[i] == '<'))
|| (y > 1 && str[i] == '|'))
{
ft_eprintf("minishell: too many %s in a row\n", str);
ft_eprintf("bozoshell: too many %s in a row\n", str);
return (1);
}
i = i + y;