Skip to content

Commit

Permalink
Accept eml and json files for hf 15 eload.
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Walter committed Sep 5, 2022
1 parent c062c44 commit 7cc47ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/cmdhf15.c
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ static int CmdHF15ELoad(const char *Cmd) {

uint8_t *data = NULL;
size_t bytes_read = 0;
int res = loadFile_safe(filename, ".bin", (void **)&data, &bytes_read);
int res = pm3_load_dump(filename, (void **)&data, &bytes_read, CARD_MEMORY_SIZE);
if (res != PM3_SUCCESS) {
return res;
}
Expand Down

0 comments on commit 7cc47ee

Please sign in to comment.