From 99d7a0a1c96ba6eb24fd7be1984ab107deda43b1 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 12 Apr 2020 21:27:32 +0200 Subject: [PATCH] chg: hf mfu ndef - better message when failed to find a mfu tag --- client/cmdhfmfu.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/cmdhfmfu.c b/client/cmdhfmfu.c index fd3ad5aeb..2513f7122 100644 --- a/client/cmdhfmfu.c +++ b/client/cmdhfmfu.c @@ -2734,7 +2734,6 @@ static int CmdHF14MfuNDEF(const char *Cmd) { arg_param_end }; CLIExecWithReturn(Cmd, argtable, true); - CLIGetHexWithReturn(1, key, &keylen); swapEndian = arg_get_lit(2); CLIParserFree(); @@ -2753,7 +2752,10 @@ static int CmdHF14MfuNDEF(const char *Cmd) { // Get tag type TagTypeUL_t tagtype = GetHF14AMfU_Type(); - if (tagtype == UL_ERROR) return PM3_ESOFT; + if (tagtype == UL_ERROR) { + PrintAndLogEx(WARNING, "No Ultraligth / NTAG based tag found"); + return PM3_ESOFT; + } // Is tag UL/NTAG?