mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
fix wrong key file name
This commit is contained in:
parent
a43d8ea9e0
commit
85f8234201
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ static int mf_save_keys_from_arr(uint16_t n, uint8_t *d) {
|
||||||
}
|
}
|
||||||
|
|
||||||
char fn[FILE_PATH_SIZE] = {0};
|
char fn[FILE_PATH_SIZE] = {0};
|
||||||
snprintf(fn, sizeof(fn), "hf-mf-%s-keys", sprint_hex_inrow(d, 4));
|
snprintf(fn, sizeof(fn), "hf-mf-%s-key", sprint_hex_inrow(d, 4));
|
||||||
saveFile(fn, ".bin", keys, keysize);
|
saveFile(fn, ".bin", keys, keysize);
|
||||||
free(keys);
|
free(keys);
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue