From b456793c3a6d14e88a468c59e6ef7004f0e62bf4 Mon Sep 17 00:00:00 2001 From: Michael Farrell Date: Sun, 3 Dec 2017 16:36:40 +1100 Subject: [PATCH] When timeout is more than 2sec, don't stop at 2sec --- client/comms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/comms.c b/client/comms.c index 74e87762..cba4ade0 100644 --- a/client/comms.c +++ b/client/comms.c @@ -342,7 +342,7 @@ bool WaitForResponseTimeoutW(uint64_t cmd, UsbCommand* response, size_t ms_timeo // 2 seconds elapsed (but this doesn't mean the timeout was exceeded) 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;