_
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user