On Mon, 15 Mar 2004, Anton Altaparmakov wrote:
> I have changed MFT_RECORD to include the NTFS 3.x specific fields.
That's great! I wanted to ask this for a while.
> Szaka, could you check ntfsclone for me? Is my change (see below)
> correct and sufficient?
It's good enough (used only during --metadata) and better than the
original. Thanks!
> I changed wipe_unused_mft() like this:
>
> - /* MFT_RECORD doesn't have the XP specific 6 bytes, so add it */
> - unused = m->bytes_in_use - (sizeof(MFT_RECORD) + 6);
> + unused = m->bytes_in_use - sizeof(MFT_RECORD);
> wiped_unused_mft += wipe_data((char *)m, sizeof(MFT_RECORD), unused);
Cheers,
Szaka
|