mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 12:44:11 +08:00
kdb: Replace strncmp with str_has_prefix
strncmp(str, const, len) is error-prone. We had better use newly introduced str_has_prefix() instead of it. Signed-off-by: Chuhong Yuan <hslester96@gmail.com> Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
This commit is contained in:
parent
d1abaeb3be
commit
635714312e
@ -830,7 +830,7 @@ static void parse_grep(const char *str)
|
||||
cp++;
|
||||
while (isspace(*cp))
|
||||
cp++;
|
||||
if (strncmp(cp, "grep ", 5)) {
|
||||
if (!str_has_prefix(cp, "grep ")) {
|
||||
kdb_printf("invalid 'pipe', see grephelp\n");
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user