diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/afc.c | 2 | ||||
-rw-r--r-- | src/device_link_service.c | 8 | ||||
-rw-r--r-- | src/file_relay.c | 2 | ||||
-rw-r--r-- | src/lockdown.c | 2 | ||||
-rw-r--r-- | src/mobilesync.c | 2 | ||||
-rw-r--r-- | src/screenshotr.c | 2 |
6 files changed, 9 insertions, 9 deletions
@@ -235,7 +235,7 @@ static afc_error_t afc_receive_data(afc_client_t client, char **bytes, uint32_t | |||
235 | } | 235 | } |
236 | 236 | ||
237 | /* check if it's a valid AFC header */ | 237 | /* check if it's a valid AFC header */ |
238 | if (strncmp(header.magic, AFC_MAGIC, AFC_MAGIC_LEN)) { | 238 | if (strncmp(header.magic, AFC_MAGIC, AFC_MAGIC_LEN) != 0) { |
239 | debug_info("Invalid AFC packet received (magic != " AFC_MAGIC ")!"); | 239 | debug_info("Invalid AFC packet received (magic != " AFC_MAGIC ")!"); |
240 | } | 240 | } |
241 | 241 | ||
diff --git a/src/device_link_service.c b/src/device_link_service.c index 6daf84d..66c2461 100644 --- a/src/device_link_service.c +++ b/src/device_link_service.c | |||
@@ -83,7 +83,7 @@ static int device_link_service_get_message(plist_t dl_msg, char **message) | |||
83 | return 0; | 83 | return 0; |
84 | } | 84 | } |
85 | 85 | ||
86 | if ((strlen(cmd_str) < 9) || (strncmp(cmd_str, "DL", 2))) { | 86 | if ((strlen(cmd_str) < 9) || (strncmp(cmd_str, "DL", 2) != 0)) { |
87 | free(cmd_str); | 87 | free(cmd_str); |
88 | return 0; | 88 | return 0; |
89 | } | 89 | } |
@@ -184,7 +184,7 @@ device_link_service_error_t device_link_service_version_exchange(device_link_ser | |||
184 | goto leave; | 184 | goto leave; |
185 | } | 185 | } |
186 | device_link_service_get_message(array, &msg); | 186 | device_link_service_get_message(array, &msg); |
187 | if (!msg || strcmp(msg, "DLMessageVersionExchange")) { | 187 | if (!msg || strcmp(msg, "DLMessageVersionExchange") != 0) { |
188 | debug_info("Did not receive DLMessageVersionExchange from device!"); | 188 | debug_info("Did not receive DLMessageVersionExchange from device!"); |
189 | err = DEVICE_LINK_SERVICE_E_PLIST_ERROR; | 189 | err = DEVICE_LINK_SERVICE_E_PLIST_ERROR; |
190 | goto leave; | 190 | goto leave; |
@@ -239,7 +239,7 @@ device_link_service_error_t device_link_service_version_exchange(device_link_ser | |||
239 | goto leave; | 239 | goto leave; |
240 | } | 240 | } |
241 | device_link_service_get_message(array, &msg); | 241 | device_link_service_get_message(array, &msg); |
242 | if (!msg || strcmp(msg, "DLMessageDeviceReady")) { | 242 | if (!msg || strcmp(msg, "DLMessageDeviceReady") != 0) { |
243 | debug_info("Did not get DLMessageDeviceReady!"); | 243 | debug_info("Did not get DLMessageDeviceReady!"); |
244 | err = DEVICE_LINK_SERVICE_E_PLIST_ERROR; | 244 | err = DEVICE_LINK_SERVICE_E_PLIST_ERROR; |
245 | goto leave; | 245 | goto leave; |
@@ -403,7 +403,7 @@ device_link_service_error_t device_link_service_receive_process_message(device_l | |||
403 | 403 | ||
404 | char *msg = NULL; | 404 | char *msg = NULL; |
405 | device_link_service_get_message(pmsg, &msg); | 405 | device_link_service_get_message(pmsg, &msg); |
406 | if (!msg || strcmp(msg, "DLMessageProcessMessage")) { | 406 | if (!msg || strcmp(msg, "DLMessageProcessMessage") != 0) { |
407 | debug_info("Did not receive DLMessageProcessMessage as expected!"); | 407 | debug_info("Did not receive DLMessageProcessMessage as expected!"); |
408 | err = DEVICE_LINK_SERVICE_E_PLIST_ERROR; | 408 | err = DEVICE_LINK_SERVICE_E_PLIST_ERROR; |
409 | goto leave; | 409 | goto leave; |
diff --git a/src/file_relay.c b/src/file_relay.c index e304d31..aa77ae6 100644 --- a/src/file_relay.c +++ b/src/file_relay.c | |||
@@ -143,7 +143,7 @@ LIBIMOBILEDEVICE_API file_relay_error_t file_relay_request_sources_timeout(file_ | |||
143 | goto leave; | 143 | goto leave; |
144 | } | 144 | } |
145 | 145 | ||
146 | if (strcmp(ack, "Acknowledged")) { | 146 | if (strcmp(ack, "Acknowledged") != 0) { |
147 | debug_info("ERROR: Did not receive 'Acknowledged' but '%s'", ack); | 147 | debug_info("ERROR: Did not receive 'Acknowledged' but '%s'", ack); |
148 | goto leave; | 148 | goto leave; |
149 | } | 149 | } |
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); |
diff --git a/src/mobilesync.c b/src/mobilesync.c index 8881e75..e50226c 100644 --- a/src/mobilesync.c +++ b/src/mobilesync.c | |||
@@ -473,7 +473,7 @@ LIBIMOBILEDEVICE_API mobilesync_error_t mobilesync_clear_all_records_on_device(m | |||
473 | goto out; | 473 | goto out; |
474 | } | 474 | } |
475 | 475 | ||
476 | if (strcmp(response_type, "SDMessageDeviceWillClearAllRecords")) { | 476 | if (strcmp(response_type, "SDMessageDeviceWillClearAllRecords") != 0) { |
477 | err = MOBILESYNC_E_PLIST_ERROR; | 477 | err = MOBILESYNC_E_PLIST_ERROR; |
478 | } | 478 | } |
479 | 479 | ||
diff --git a/src/screenshotr.c b/src/screenshotr.c index 11d6506..77835da 100644 --- a/src/screenshotr.c +++ b/src/screenshotr.c | |||
@@ -142,7 +142,7 @@ LIBIMOBILEDEVICE_API screenshotr_error_t screenshotr_take_screenshot(screenshotr | |||
142 | plist_t node = plist_dict_get_item(dict, "MessageType"); | 142 | plist_t node = plist_dict_get_item(dict, "MessageType"); |
143 | char *strval = NULL; | 143 | char *strval = NULL; |
144 | plist_get_string_val(node, &strval); | 144 | plist_get_string_val(node, &strval); |
145 | if (!strval || strcmp(strval, "ScreenShotReply")) { | 145 | if (!strval || strcmp(strval, "ScreenShotReply") != 0) { |
146 | debug_info("invalid screenshot data received!"); | 146 | debug_info("invalid screenshot data received!"); |
147 | res = SCREENSHOTR_E_PLIST_ERROR; | 147 | res = SCREENSHOTR_E_PLIST_ERROR; |
148 | goto leave; | 148 | goto leave; |