Renamed record_length as log_record_header_length in ntfsrecover.h
Prepare merging ntfsrecover.h into logfile.h by naming the record header length the same way.pull/2/head
parent
b977f18c6e
commit
234cae2a1b
|
@ -2742,7 +2742,7 @@ static void showrest(const RESTART_PAGE_HEADER *rest)
|
|||
printf("last_lsn_data_len %08lx\n",
|
||||
(long)le32_to_cpu(resa->last_lsn_data_length));
|
||||
printf("record_length %04x\n",
|
||||
(int)le16_to_cpu(resa->record_length));
|
||||
(int)le16_to_cpu(resa->log_record_header_length));
|
||||
printf("log_page_data_offs %04x\n",
|
||||
(int)le16_to_cpu(resa->log_page_data_offset));
|
||||
printf("restart_log_open_count %08lx\n",
|
||||
|
|
|
@ -154,7 +154,7 @@ typedef struct { /* size 44 */
|
|||
le16 client_array_offset;
|
||||
le64 file_size;
|
||||
le32 last_lsn_data_length;
|
||||
le16 record_length;
|
||||
le16 log_record_header_length;
|
||||
le16 log_page_data_offset;
|
||||
le32 restart_log_open_count;
|
||||
} __attribute__((__packed__)) RESTART_AREA;
|
||||
|
|
Loading…
Reference in New Issue