summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/idevicedebug.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/idevicedebug.c b/tools/idevicedebug.c
index 437faba..b0198a8 100644
--- a/tools/idevicedebug.c
+++ b/tools/idevicedebug.c
@@ -501,7 +501,9 @@ int main(int argc, char *argv[])
501 501
502 if (response) { 502 if (response) {
503 log_debug("response: %s", response); 503 log_debug("response: %s", response);
504 dres = debugserver_client_handle_response(debugserver_client, &response, 1); 504 if (strncmp(response, "OK", 2)) {
505 dres = debugserver_client_handle_response(debugserver_client, &response, 1);
506 }
505 } 507 }
506 508
507 sleep(1); 509 sleep(1);