This commit is contained in:
Anton Dolozin 2025-11-09 21:02:49 +01:00
parent d7454318bf
commit 51955157f3
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -49,7 +49,7 @@ bool find_the_incorrect(struct tree* tree) {
if
((strcspn(tree->value, "*") != strlen(tree->value) &&
strcspn(tree->value, "?") != strlen(tree->value)) || (strcspn(tree->value, ".") != strlen(tree->value) )) {
strcspn(tree->value, "?") != strlen(tree->value)) ) {
return true;
}