summaryrefslogtreecommitdiffstats
path: root/src/mobilebackup2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mobilebackup2.c')
-rw-r--r--src/mobilebackup2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mobilebackup2.c b/src/mobilebackup2.c
index c16da9a..1e39efa 100644
--- a/src/mobilebackup2.c
+++ b/src/mobilebackup2.c
@@ -135,7 +135,7 @@ mobilebackup2_error_t mobilebackup2_client_free(mobilebackup2_client_t client)
135 * will be inserted into this plist before sending it. This parameter 135 * will be inserted into this plist before sending it. This parameter
136 * can be NULL if message is not NULL. 136 * can be NULL if message is not NULL.
137 */ 137 */
138static mobilebackup2_error_t internal_mobilebackup2_send_message(mobilebackup2_client_t client, const char *message, plist_t options) 138mobilebackup2_error_t mobilebackup2_send_message(mobilebackup2_client_t client, const char *message, plist_t options)
139{ 139{
140 if (!client || !client->parent || (!message && !options)) 140 if (!client || !client->parent || (!message && !options))
141 return MOBILEBACKUP2_E_INVALID_ARG; 141 return MOBILEBACKUP2_E_INVALID_ARG;
@@ -368,7 +368,7 @@ mobilebackup2_error_t mobilebackup2_version_exchange(mobilebackup2_client_t clie
368 } 368 }
369 plist_dict_insert_item(dict, "SupportedProtocolVersions", array); 369 plist_dict_insert_item(dict, "SupportedProtocolVersions", array);
370 370
371 mobilebackup2_error_t err = internal_mobilebackup2_send_message(client, "Hello", dict); 371 mobilebackup2_error_t err = mobilebackup2_send_message(client, "Hello", dict);
372 plist_free(dict); 372 plist_free(dict);
373 373
374 if (err != MOBILEBACKUP2_E_SUCCESS) 374 if (err != MOBILEBACKUP2_E_SUCCESS)
@@ -438,7 +438,7 @@ mobilebackup2_error_t mobilebackup2_send_request(mobilebackup2_client_t client,
438 if (options) { 438 if (options) {
439 plist_dict_insert_item(dict, "Options", plist_copy(options)); 439 plist_dict_insert_item(dict, "Options", plist_copy(options));
440 } 440 }
441 mobilebackup2_error_t err = internal_mobilebackup2_send_message(client, request, dict); 441 mobilebackup2_error_t err = mobilebackup2_send_message(client, request, dict);
442 plist_free(dict); 442 plist_free(dict);
443 443
444 return err; 444 return err;