Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12672/ntfsprogs
Modified Files:
ntfsinfo.c
Log Message:
Fix endianness bug in ntfsinfo. (Anton)
Index: ntfsinfo.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/ntfsinfo.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -p -r1.78 -r1.79
--- ntfsinfo.c 7 Oct 2005 14:10:57 -0000 1.78
+++ ntfsinfo.c 15 Oct 2005 23:44:57 -0000 1.79
@@ -1882,7 +1882,7 @@ int main(int argc, char **argv)
if (opts.filename) {
inode = ntfs_pathname_to_inode(vol, NULL, opts.filename);
} else {
- inode = ntfs_inode_open(vol, MK_LE_MREF(opts.inode, 0));
+ inode = ntfs_inode_open(vol, MK_MREF(opts.inode, 0));
}
/* dump the inode information */
|