Remove incorrect message (my own regression)

This commit is contained in:
Henry Gabryjelski 2023-10-30 17:26:07 -07:00
parent 17844afe9d
commit 939d3d4a93

View file

@ -1138,10 +1138,8 @@ int loadFileJSONex(const char *preferredName, void *data, size_t maxdatalen, siz
char ctype[100] = {0};
JsonLoadStr(root, "$.FileType", ctype);
// Proxmark3 settings file. No
// Proxmark3 settings file. Nothing to do except call the callback function
if (!strcmp(ctype, "settings")) {
PrintAndLogEx(ERR, "ERROR: json " _YELLOW_("%s") " appears to be Proxmark3 settings file", preferredName);
PrintAndLogEx(INFO, "not a valid dump file");
goto out;
}