We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e046470 commit 16e949bCopy full SHA for 16e949b
format/pe/coff.go
@@ -331,7 +331,7 @@ func peCoffStubDecode(d *decode.D) any {
331
d.FieldRawLen("signature", 4*8, d.AssertBitBuf([]byte("PE\x00\x00")))
332
d.FieldU16("machine", MachineTypeNames, scalar.UintHex)
333
numberOfSections := d.FieldU16("number_of_sections")
334
- d.FieldU32("time_date_stamp", scalar.UintActualUnixTime(time.RFC3339))
+ d.FieldU32("time_date_stamp", scalar.UintActualUnixTimeDescription(time.Second, time.RFC3339))
335
pointerToSymbolTable := d.FieldU32("pointer_to_symbol_table", scalar.UintHex)
336
numberOfSymbols := d.FieldU32("number_of_symbols")
337
sizeOfOptionalHeader := d.FieldU16("size_of_optional_header")
0 commit comments