chg: 'hf mf cload/csave' - same output with regards to blocks as eload/esave

This commit is contained in:
iceman1001 2017-08-28 17:22:29 +02:00
parent d8c72242a2
commit fdd4186aa0

View file

@ -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;
}