From 448394fa18b98e35e022f37b1f7f5f51bf8971a3 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 20 Nov 2020 15:45:14 +0100 Subject: [PATCH] more clear message (thanks @amal!) --- client/src/cmdlfem4x05.c | 6 +++--- client/src/cmdlft55xx.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/cmdlfem4x05.c b/client/src/cmdlfem4x05.c index 93078178d..9abc2862c 100644 --- a/client/src/cmdlfem4x05.c +++ b/client/src/cmdlfem4x05.c @@ -429,7 +429,7 @@ int em4x05_clone_tag(uint32_t *blockdata, uint8_t numblocks, uint32_t pwd, bool } if (res == 0) - PrintAndLogEx(SUCCESS, "Success writing to tag"); + PrintAndLogEx(SUCCESS, "Data written and verified"); return PM3_SUCCESS; } @@ -824,7 +824,7 @@ int CmdEM4x05Write(const char *Cmd) { uint32_t dummy = 0; int status = em4x05_demod_resp(&dummy, true); if (status == PM3_SUCCESS) - PrintAndLogEx(SUCCESS, "Success writing to tag"); + PrintAndLogEx(SUCCESS, "Data written and verified"); else if (status == PM3_EFAILED) PrintAndLogEx(ERR, "Tag denied %s operation", protectOperation ? "Protect" : "Write"); else @@ -1431,7 +1431,7 @@ static int unlock_write_protect(bool use_pwd, uint32_t pwd, uint32_t data, bool uint32_t dummy = 0; int status = em4x05_demod_resp(&dummy, true); if (status == PM3_SUCCESS && verbose) - PrintAndLogEx(SUCCESS, "Success writing to tag"); + PrintAndLogEx(SUCCESS, "Data written and verified"); else if (status == PM3_EFAILED) PrintAndLogEx(ERR, "Tag denied PROTECT operation"); else diff --git a/client/src/cmdlft55xx.c b/client/src/cmdlft55xx.c index b2d3b56cd..a3ccf2052 100644 --- a/client/src/cmdlft55xx.c +++ b/client/src/cmdlft55xx.c @@ -489,7 +489,7 @@ int clone_t55xx_tag(uint32_t *blockdata, uint8_t numblocks) { } if (res == 0) - PrintAndLogEx(SUCCESS, "Success writing to tag"); + PrintAndLogEx(SUCCESS, "Data written and verified"); return PM3_SUCCESS; }