This commit is contained in:
iceman1001 2019-03-09 11:30:26 +01:00
parent e093d1ab29
commit cc9ec2d79c
3 changed files with 4 additions and 4 deletions

View file

@ -607,7 +607,7 @@ int CmdHF14ACUIDs(const char *Cmd) {
if (ukbhit()) { if (ukbhit()) {
int gc = getchar(); (void)gc; int gc = getchar(); (void)gc;
PrintAndLogEx(NORMAL, "\n[!] aborted via keyboard!\n"); PrintAndLogEx(WARNING, "\n[!] aborted via keyboard!\n");
break; break;
} }

View file

@ -367,7 +367,7 @@ int CmdHFFelicaDumpLite(const char *Cmd) {
printf("."); fflush(stdout); printf("."); fflush(stdout);
if (ukbhit()) { if (ukbhit()) {
int gc = getchar(); (void)gc; int gc = getchar(); (void)gc;
PrintAndLogEx(NORMAL, "\n[!] aborted via keyboard!\n"); PrintAndLogEx(WARNING, "\n[!] aborted via keyboard!\n");
DropField(); DropField();
return 1; return 1;
} }

View file

@ -1057,7 +1057,7 @@ int CmdHFiClassReader_Dump(const char *Cmd) {
printf("."); fflush(stdout); printf("."); fflush(stdout);
if (ukbhit()) { if (ukbhit()) {
int gc = getchar(); (void)gc; int gc = getchar(); (void)gc;
PrintAndLogEx(NORMAL, "\n[!] aborted via keyboard!\n"); PrintAndLogEx(WARNING, "\n[!] aborted via keyboard!\n");
DropField(); DropField();
return 0; return 0;
} }
@ -2061,7 +2061,7 @@ int CmdHFiClassCheckKeys(const char *Cmd) {
if (ukbhit()) { if (ukbhit()) {
int gc = getchar(); (void)gc; int gc = getchar(); (void)gc;
PrintAndLogEx(NORMAL, "\n[!] Aborted via keyboard!\n"); PrintAndLogEx(WARNING, "\n[!] Aborted via keyboard!\n");
goto out; goto out;
} }