summaryrefslogtreecommitdiffstats
path: root/src/lockdown.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lockdown.c')
-rw-r--r--src/lockdown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lockdown.c b/src/lockdown.c
index 1786536..25e8c87 100644
--- a/src/lockdown.c
+++ b/src/lockdown.c
@@ -680,7 +680,7 @@ LIBIMOBILEDEVICE_API lockdownd_error_t lockdownd_client_new_with_handshake(idevi
680 ret = lockdownd_query_type(client_loc, &type); 680 ret = lockdownd_query_type(client_loc, &type);
681 if (LOCKDOWN_E_SUCCESS != ret) { 681 if (LOCKDOWN_E_SUCCESS != ret) {
682 debug_info("QueryType failed in the lockdownd client."); 682 debug_info("QueryType failed in the lockdownd client.");
683 } else if (strcmp("com.apple.mobile.lockdown", type)) { 683 } else if (strcmp("com.apple.mobile.lockdown", type) != 0) {
684 debug_info("Warning QueryType request returned \"%s\".", type); 684 debug_info("Warning QueryType request returned \"%s\".", type);
685 } 685 }
686 free(type); 686 free(type);