From 939d3d4a93a82bf4ae04bbb9cbaf4c148d998a69 Mon Sep 17 00:00:00 2001 From: Henry Gabryjelski Date: Mon, 30 Oct 2023 17:26:07 -0700 Subject: [PATCH] Remove incorrect message (my own regression) --- client/src/fileutils.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/src/fileutils.c b/client/src/fileutils.c index 15246e1547..10f1af49c4 100644 --- a/client/src/fileutils.c +++ b/client/src/fileutils.c @@ -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; }