summaryrefslogtreecommitdiff
path: root/src/ntfs.c
diff options
context:
space:
mode:
authorStef Walter <stef@thewalter.net>2004-05-07 01:45:49 +0000
committerStef Walter <stef@thewalter.net>2004-05-07 01:45:49 +0000
commit4297404391e6d828d71306f7402ba1cdd05297aa (patch)
tree41efac068d7dff03c061fad9b75e83bf36f9653c /src/ntfs.c
parente0f1ee22b9aae014c8dcdf1ba98bbdaffb716b0d (diff)
- Fixed attribute List problems.
- Super fragmented MFTs work - Ignore compressed and encrypted files - Simplified memory management. - Skip simple files - Win32 compatibility work
Diffstat (limited to 'src/ntfs.c')
-rw-r--r--src/ntfs.c4
1 files changed, 2 insertions, 2 deletions
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);
}