diff options
Diffstat (limited to 'tools/irecovery.c')
-rw-r--r-- | tools/irecovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/irecovery.c b/tools/irecovery.c index 912ac37..8a4368d 100644 --- a/tools/irecovery.c +++ b/tools/irecovery.c @@ -65,7 +65,7 @@ static void shell_usage() { static void parse_command(irecv_client_t client, unsigned char* command, unsigned int size) { char* cmd = strdup((char*)command); char* action = strtok(cmd, " "); - debug("Executing %s\n", action); + if (!strcmp(cmd, "/exit")) { quit = 1; } else if (!strcmp(cmd, "/help")) { |