diff options
author | Martin Szulecki | 2010-06-19 13:16:19 +0200 |
---|---|---|
committer | Martin Szulecki | 2010-06-19 13:16:19 +0200 |
commit | 2b2b436f2d14d83c6fdbf0da75dd2cdfcf2dd48f (patch) | |
tree | 159b10d5e818a00f7634a8d3212c1d6e76e2a3dc /src/mobilesync.c | |
parent | 5a00e7f1794c873475c32ea7aa125c09d3249359 (diff) | |
download | libimobiledevice-2b2b436f2d14d83c6fdbf0da75dd2cdfcf2dd48f.tar.gz libimobiledevice-2b2b436f2d14d83c6fdbf0da75dd2cdfcf2dd48f.tar.bz2 |
mobilesync: Fix incorrect process changes message when sending changes
Sending changes from computer to device was broken. This also allows
passing NULL for actions.
Diffstat (limited to 'src/mobilesync.c')
-rw-r--r-- | src/mobilesync.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mobilesync.c b/src/mobilesync.c index 0d68c40..b7567f2 100644 --- a/src/mobilesync.c +++ b/src/mobilesync.c @@ -541,9 +541,14 @@ static plist_t create_process_changes_message(const char *data_class, plist_t en { plist_t msg = plist_new_array(); plist_array_append_item(msg, plist_new_string("SDMessageProcessChanges")); + plist_array_append_item(msg, plist_new_string(data_class)); plist_array_append_item(msg, plist_copy(entities)); plist_array_append_item(msg, plist_new_bool(more_changes)); - plist_array_append_item(msg, plist_copy(actions)); + + if (actions) + plist_array_append_item(msg, plist_copy(actions)); + else + plist_array_append_item(msg, plist_new_string(EMPTY_PARAMETER_STRING)); return msg; } @@ -631,7 +636,8 @@ mobilesync_error_t mobilesync_ready_to_send_changes_from_computer(mobilesync_cli * @param client The mobilesync client * @param entities The changed entity records as a PLIST_DICT * @param is_last_record A flag indiciating if this submission is the last one - * @param actions Additional flags for the device created with mobilesync_actions_new() + * @param actions Additional actions for the device created with mobilesync_actions_new() + * or NULL if no actions should be passed * * @return MOBILESYNC_E_SUCCESS on success, MOBILESYNC_E_INVALID_ARG if * one of the parameters is invalid, MOBILESYNC_E_WRONG_DIRECTION if the |