Fix the definition of the CHKD ntfs record magic. It had an off by
two error causing it to be CHKB instead of CHKD.edge.strict_endians
parent
431258997d
commit
4b1b89109d
|
@ -61,6 +61,8 @@ xx/xx/2005 - 1.12.0-WIP
|
|||
genuinely need this functionality as they work on a too low level.
|
||||
Make sure all those cases are ok.
|
||||
- ntfsclone: fix saving by sectors during --rescue (Scott Hansen, Szaka)
|
||||
- Fix the definition of the CHKD ntfs record magic. It had an off by
|
||||
two error causing it to be CHKB instead of CHKD.
|
||||
|
||||
08/08/2005 - 1.11.2 - ntfsdecrypt now works and lots of fixes and improvements.
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ typedef enum {
|
|||
magic_RCRD = const_cpu_to_le32(0x44524352), /* Log record page. */
|
||||
|
||||
/* Found in $LogFile/$DATA. (May be found in $MFT/$DATA, also?) */
|
||||
magic_CHKD = const_cpu_to_le32(0x424b4843), /* Modified by chkdsk. */
|
||||
magic_CHKD = const_cpu_to_le32(0x444b4843), /* Modified by chkdsk. */
|
||||
|
||||
/* Found in all ntfs record containing records. */
|
||||
magic_BAAD = const_cpu_to_le32(0x44414142), /* Failed multi sector
|
||||
|
|
Loading…
Reference in New Issue