Skip to content
Snippets Groups Projects
Commit d647587c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Use 7 (hex) digits for byte offset (into shd file)

Vert's mail base .shd file is consistently > 0xFFFFFF bytes in size.
parent b6cebf82
No related branches found
No related tags found
No related merge requests found
......@@ -623,7 +623,7 @@ void dumpindex(ulong start, ulong count)
, idx.from, idx.to, idx.subj);
break;
}
printf(" %04X %06X %s", idx.attr, idx.offset
printf(" %04X %07X %s", idx.attr, idx.offset
, xpDate_to_isoDateStr(time_to_xpDate(idx.time), "-", tmp, sizeof(tmp)));
if (smb_msg_type(idx.attr) == SMB_MSG_TYPE_FILE && idxreclen == sizeof(fileidxrec_t)) {
fileidxrec_t fidx;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment