From 8f2362e7b0cc8ba72f9084cdcb7f81580617c876 Mon Sep 17 00:00:00 2001 From: Krzysztof Zdulski Date: Sun, 15 Jan 2023 16:33:32 +0100 Subject: [PATCH] Fix mifare classic dump when block cannot be read --- client/src/cmdhfmf.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index 11d101391..b98f21c01 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -1044,11 +1044,9 @@ static int CmdHF14AMfDump(const char *Cmd) { PrintAndLogEx(SUCCESS, "successfully read block %2d of sector %2d.", blockNo, sectorNo); } else { PrintAndLogEx(FAILED, "could not read block %2d of sector %2d", blockNo, sectorNo); - break; } } else { PrintAndLogEx(WARNING, "command execute timeout when trying to read block %2d of sector %2d.", blockNo, sectorNo); - break; } } }