Skip to content

Commit

Permalink
Merge pull request #2156 from henrygab/bugfix_err_message
Browse files Browse the repository at this point in the history
Remove incorrect message (my own regression)
  • Loading branch information
iceman1001 authored Oct 31, 2023
2 parents 17844af + 939d3d4 commit 03ffda0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions client/src/fileutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 03ffda0

Please sign in to comment.