From 4297404391e6d828d71306f7402ba1cdd05297aa Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 7 May 2004 01:45:49 +0000 Subject: - Fixed attribute List problems. - Super fragmented MFTs work - Ignore compressed and encrypted files - Simplified memory management. - Skip simple files - Win32 compatibility work --- src/ntfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ntfs.c') diff --git a/src/ntfs.c b/src/ntfs.c index 88bab7e..3e2b657 100644 --- a/src/ntfs.c +++ b/src/ntfs.c @@ -46,7 +46,7 @@ ntfs_attribheader* ntfs_searchattribute(byte* location, uint32 attrType, byte* e return NULL; } -byte* ntfs_getattributelist(ntfs_recordheader* record) +byte* ntfs_getattributeheaders(ntfs_recordheader* record) { byte* location = (byte*)record; ASSERT(record->offAttrs != 0); @@ -57,7 +57,7 @@ byte* ntfs_getattributelist(ntfs_recordheader* record) ntfs_attribheader* ntfs_findattribute(ntfs_recordheader* record, uint32 attrType, byte* end) { - byte* location = ntfs_getattributelist(record); + byte* location = ntfs_getattributeheaders(record); return ntfs_searchattribute(location, attrType, end, false); } -- cgit v1.2.3