From: iceman1001 Date: Mon, 26 Sep 2016 19:39:04 +0000 (+0200) Subject: CHG: added the verbose flag, to make the output in "hf search" lesser. X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/323e05cc20b9c6f3235e6b94046f9aa587643c87?ds=inline CHG: added the verbose flag, to make the output in "hf search" lesser. --- diff --git a/client/cmdhflegic.c b/client/cmdhflegic.c index 2200a15b..031265fa 100644 --- a/client/cmdhflegic.c +++ b/client/cmdhflegic.c @@ -843,11 +843,11 @@ int HFLegicInfo(const char *Cmd, bool verbose) { } } } else { - PrintAndLog("legic card select failed"); + if ( verbose ) PrintAndLog("legic card select failed"); return 1; } } else { - PrintAndLog("command execution time out"); + if ( verbose ) PrintAndLog("command execution time out"); return 1; } return 0;