(Logical change 1.41)
edge.strict_endians
cantab.net!aia21 2002-12-12 20:12:16 +00:00
parent b643de455a
commit 095881f26d
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ BOOL ntfs_names_are_equal(const uchar_t *s1, size_t s1_len,
if (!s1_len)
return TRUE;
if (ic == CASE_SENSITIVE)
return ntfs_ucsncmp(s1, s2, s1_len << 1) ? FALSE: TRUE;
return ntfs_ucsncmp(s1, s2, s1_len) ? FALSE: TRUE;
return ntfs_ucsncasecmp(s1, s2, s1_len, upcase, upcase_size) ? FALSE:
TRUE;
}