From ac4ef684e571f4ba74a67efe9bb935da44b8d24c Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 23 Dec 2017 22:17:30 +0100 Subject: [PATCH] fix: cherry picked fix LF SNOOP not working. https://github.com/Proxmark/proxmark3/pull/528 https://github.com/Proxmark/proxmark3/issues/514 --- client/cmdmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdmain.c b/client/cmdmain.c index 1220041fa..3fb618208 100644 --- a/client/cmdmain.c +++ b/client/cmdmain.c @@ -166,7 +166,7 @@ bool WaitForResponseTimeoutW(uint32_t cmd, UsbCommand* response, size_t ms_timeo if (msclock() - start_time > 3000 && show_warning) { PrintAndLog("Waiting for a response from the proxmark..."); PrintAndLog("Don't forget to cancel its operation first by pressing on the button"); - break; + show_warning = false; } } return false;