From fdd4186aa094efaa11eefca56cdc65646435a1b5 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 28 Aug 2017 17:22:29 +0200 Subject: [PATCH] chg: 'hf mf cload/csave' - same output with regards to blocks as eload/esave --- client/cmdhfmf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdhfmf.c b/client/cmdhfmf.c index f8cd0580d..3687222ae 100644 --- a/client/cmdhfmf.c +++ b/client/cmdhfmf.c @@ -2231,7 +2231,7 @@ int CmdHF14AMfCLoad(const char *Cmd) { PrintAndLog("File content error. There must be 64 blocks"); return 4; } - PrintAndLog("Loaded from file: %s", filename); + PrintAndLog("Loaded %d blocks from file: %s", blockNum, filename); return 0; } @@ -2443,7 +2443,7 @@ int CmdHF14AMfCSave(const char *Cmd) { fclose(feml); fclose(fbin); for (uint8_t i=0; i<2; ++i) - PrintAndLog("Saved to file: %s", filename[i]); + PrintAndLog("Saved %d blocks to file: %s", numblocks, filename[i]); return 0; }