mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-09 03:00:07 -04:00
create files iso file id byte order fix
This commit is contained in:
@@ -3344,8 +3344,7 @@ static int DesfireCreateFileParameters(
|
||||
*datalen = 1;
|
||||
|
||||
if (isofileid > 0) {
|
||||
data[1] = (isofileid >> 8) & 0xff;
|
||||
data[2] = isofileid & 0xff;
|
||||
Uint2byteToMemLe(&data[1], isofileid);
|
||||
*datalen += 2;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user