Make ntfs_attrs_walk() use AT_UNUSED and CASE_SENSITIVE instead of

zero when calling ntfs_lookup() for type checking correctness.  (Yuval
Fledel)

(Logical change 1.297)
edge.strict_endians
cantab.net!aia21 2004-03-05 11:41:37 +00:00
parent 3c69e66ff8
commit 4de7c6fde0
1 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,8 @@ extern ATTR_DEF *ntfs_attr_find_in_attrdef(const ntfs_volume *vol,
*/
static __inline__ int ntfs_attrs_walk(ntfs_attr_search_ctx *ctx)
{
return ntfs_attr_lookup(0, NULL, 0, 0, 0, NULL, 0, ctx);
return ntfs_attr_lookup(AT_UNUSED, NULL, 0, CASE_SENSITIVE, 0,
NULL, 0, ctx);
}
/**