data load: search file with and without extension .pm3

This commit is contained in:
Philippe Teuwen 2019-09-04 22:53:54 +02:00
parent 02a2b902ce
commit 2ddbbd255b

View file

@ -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");