From f0314562f7386b4e31e385a62483c1643c5e081a Mon Sep 17 00:00:00 2001 From: Brian Pow Date: Thu, 22 Feb 2018 09:36:11 +0800 Subject: [PATCH] fix typos --- client/cmdhfmf.c | 2 +- client/loclass/ikeys.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdhfmf.c b/client/cmdhfmf.c index efb53f4f7..ed1bc9253 100644 --- a/client/cmdhfmf.c +++ b/client/cmdhfmf.c @@ -840,7 +840,7 @@ int CmdHF14AMfDump(const char *Cmd) { uint16_t numblocks = FirstBlockOfSector(numSectors - 1) + NumBlocksPerSector(numSectors - 1); fwrite(carddata, 1, 16*numblocks, fout); fclose(fout); - PrintAndLogEx(NORMAL, "[+} dumped %d blocks (%d bytes) to file %s", numblocks, 16*numblocks, dataFilename); + PrintAndLogEx(SUCCESS, "dumped %d blocks (%d bytes) to file %s", numblocks, 16*numblocks, dataFilename); } return 0; } diff --git a/client/loclass/ikeys.c b/client/loclass/ikeys.c index 04c3c9d15..7d8ed6d94 100644 --- a/client/loclass/ikeys.c +++ b/client/loclass/ikeys.c @@ -578,7 +578,7 @@ int testKeyDiversificationWithMasterkeyTestcases() { int i; uint8_t empty[8]={0}; - PrintfAndLog("[+} Testing encryption/decryption"); + PrintfAndLog("[+] Testing encryption/decryption"); for (i = 0; memcmp(testcases+i, empty, 8); i++) error += testDES(testcases[i], ctx_enc, ctx_dec);