diff --git a/ChangeLog b/ChangeLog index b246a510..2374936c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -36,6 +36,7 @@ xx/xx/2005 - 1.12.0-WIP - Hard link mkfs.ntfs and mkfs.ntfs.8 with mkntfs and mkntfs.8. (Szaka) - Only include sys/ioctl.h in libntfs/device.c if ./configure detected it to be present. (Christophe) + - ntfscluster: fix incorrect volume usage calculation. (Szaka) 08/08/2005 - 1.11.2 - ntfsdecrypt now works and lots of fixes and improvements. diff --git a/ntfsprogs/ntfscluster.c b/ntfsprogs/ntfscluster.c index 35d54010..9bc60ee9 100644 --- a/ntfsprogs/ntfscluster.c +++ b/ntfsprogs/ntfscluster.c @@ -269,7 +269,7 @@ static int info (ntfs_volume *vol) inuse++; - a_ctx = ntfs_attr_get_search_ctx (NULL, m_ctx->inode->mrec); + a_ctx = ntfs_attr_get_search_ctx (m_ctx->inode, NULL); while ((rec = find_attribute (AT_UNUSED, a_ctx))) {