From 8e25ed4f98805461d2ec72c5262cbf57158e30b7 Mon Sep 17 00:00:00 2001 From: merlokk Date: Wed, 27 Sep 2017 19:15:53 +0300 Subject: [PATCH] small fix --- client/cmdhfmf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/cmdhfmf.c b/client/cmdhfmf.c index 4c830164..295f22b7 100644 --- a/client/cmdhfmf.c +++ b/client/cmdhfmf.c @@ -591,7 +591,7 @@ int CmdHF14AMfNested(const char *Cmd) transferToEml |= (ctmp == 't' || ctmp == 'T'); createDumpFile |= (ctmp == 'd' || ctmp == 'D'); - PrintAndLog("--nested. sectors:%2d, block no:*, , eml:%c, dmp=%c ", SectorsCnt, transferToEml?'y':'n', createDumpFile?'y':'n'); + PrintAndLog("--nested. sectors:%2d, block no:*, eml:%c, dmp=%c ", SectorsCnt, transferToEml?'y':'n', createDumpFile?'y':'n'); } else { blockNo = param_get8(Cmd, 1); @@ -616,6 +616,7 @@ int CmdHF14AMfNested(const char *Cmd) return 3; } + // one sector nested if (cmdp == 'o') { trgBlockNo = param_get8(Cmd, 4);