mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-06 05:01:17 -07:00
Bugfix: Output typing on print of HID card formats (#895)
* Bugfix: Output typing on print of HID card formats The 'PrintAndLog' calls were using signed types and sometimes too few bits in width for formatting/outputting the data as was revealed in the forums. This commit will correct the printf-formatted output typing on display of the fields. * Update hidcardformats.c Updated to use macros as requested by @pwpiwi
This commit is contained in:
parent
28ae37b746
commit
763d1befc1
1 changed files with 4 additions and 4 deletions
|
@ -574,13 +574,13 @@ bool HIDPack(/* in */int FormatIndex, /* in */hidproxcard_t* card, /* out */hidp
|
||||||
void HIDDisplayUnpackedCard(hidproxcard_t* card, const hidcardformat_t format){
|
void HIDDisplayUnpackedCard(hidproxcard_t* card, const hidcardformat_t format){
|
||||||
PrintAndLog(" Format: %s (%s)", format.Name, format.Descrp);
|
PrintAndLog(" Format: %s (%s)", format.Name, format.Descrp);
|
||||||
if (format.Fields.hasFacilityCode)
|
if (format.Fields.hasFacilityCode)
|
||||||
PrintAndLog("Facility Code: %d",card->FacilityCode);
|
PrintAndLog("Facility Code: %" PRIu32,card->FacilityCode);
|
||||||
if (format.Fields.hasCardNumber)
|
if (format.Fields.hasCardNumber)
|
||||||
PrintAndLog(" Card Number: %d",card->CardNumber);
|
PrintAndLog(" Card Number: %" PRIu64,card->CardNumber);
|
||||||
if (format.Fields.hasIssueLevel)
|
if (format.Fields.hasIssueLevel)
|
||||||
PrintAndLog(" Issue Level: %d",card->IssueLevel);
|
PrintAndLog(" Issue Level: %" PRIu32,card->IssueLevel);
|
||||||
if (format.Fields.hasOEMCode)
|
if (format.Fields.hasOEMCode)
|
||||||
PrintAndLog(" OEM Code: %d",card->OEM);
|
PrintAndLog(" OEM Code: %" PRIu32,card->OEM);
|
||||||
if (format.Fields.hasParity)
|
if (format.Fields.hasParity)
|
||||||
PrintAndLog(" Parity: %s",card->ParityValid ? "Valid" : "Invalid");
|
PrintAndLog(" Parity: %s",card->ParityValid ? "Valid" : "Invalid");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue