From 4a82a887c34d0315ddf81edbe94d72000ffcb304 Mon Sep 17 00:00:00 2001 From: "flatcap.org!ntfs" Date: Thu, 17 Jun 2004 20:09:32 +0000 Subject: [PATCH] Auto merged 2004/06/17 21:03:45+01:00 cantab.net!aia21 Auto merged 2004/06/17 21:03:28+01:00 cantab.net!aia21 Endianness fix. (Logical change 1.423) --- ntfsprogs/ntfsinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntfsprogs/ntfsinfo.c b/ntfsprogs/ntfsinfo.c index 8cab6c37..06c51435 100644 --- a/ntfsprogs/ntfsinfo.c +++ b/ntfsprogs/ntfsinfo.c @@ -902,7 +902,7 @@ static void ntfs_dump_attr_index_root(ATTR_RECORD *attr) /* attr_type dumping */ printf("\tIndexed Attr Type:\t "); - type = le32_to_cpu(index_root->type); + type = index_root->type; if (type) { if (index_root->type != AT_FILE_NAME) { /* wierd, this should be illgeal */