diff options
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/raw/search.c b/source4/torture/raw/search.c index be54aecb3d..7dd46d51ae 100644 --- a/source4/torture/raw/search.c +++ b/source4/torture/raw/search.c @@ -682,7 +682,7 @@ static BOOL test_many_files(struct smbcli_state *cli, TALLOC_CTX *mem_ctx) s = result.list[i].search.name; } asprintf(&fname, "t%03d-%d.txt", i, i); - if (strcmp(fname, s)) { + if (strcasecmp(fname, s)) { printf("Incorrect name %s at entry %d\n", s, i); ret = False; break; |