mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-08 17:18:10 +08:00
data load: search file with and without extension .pm3
This commit is contained in:
parent
02a2b902ce
commit
2ddbbd255b
1 changed files with 4 additions and 2 deletions
|
@ -1648,8 +1648,10 @@ static int CmdLoad(const char *Cmd) {
|
|||
memcpy(filename, Cmd, len);
|
||||
|
||||
char *path;
|
||||
if (searchFile(&path, TRACES_SUBDIR, filename, "", false) != PM3_SUCCESS) {
|
||||
return PM3_EFILE;
|
||||
if (searchFile(&path, TRACES_SUBDIR, filename, ".pm3", true) != PM3_SUCCESS) {
|
||||
if (searchFile(&path, TRACES_SUBDIR, filename, "", false) != PM3_SUCCESS) {
|
||||
return PM3_EFILE;
|
||||
}
|
||||
}
|
||||
|
||||
FILE *f = fopen(path, "r");
|
||||
|
|
Loading…
Reference in a new issue