diff options
| author | 2014-03-20 23:00:20 +0100 | |
|---|---|---|
| committer | 2014-03-20 23:00:20 +0100 | |
| commit | 88ce6113593158944630435678e689bf155d9a03 (patch) | |
| tree | 0757287665b7e9c7263d77fd269b0777e8228d25 /src/house_arrest.c | |
| parent | a34a537d1408f8692daeadd5e1f5859ff13a3473 (diff) | |
| download | libimobiledevice-88ce6113593158944630435678e689bf155d9a03.tar.gz libimobiledevice-88ce6113593158944630435678e689bf155d9a03.tar.bz2 | |
Bump dependency to libplist 1.11 and remove use of "plist_dict_insert_item()"
Diffstat (limited to 'src/house_arrest.c')
| -rw-r--r-- | src/house_arrest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/house_arrest.c b/src/house_arrest.c index 5a23aff..9aaad34 100644 --- a/src/house_arrest.c +++ b/src/house_arrest.c | |||
| @@ -193,8 +193,8 @@ house_arrest_error_t house_arrest_send_command(house_arrest_client_t client, con | |||
| 193 | house_arrest_error_t res = HOUSE_ARREST_E_UNKNOWN_ERROR; | 193 | house_arrest_error_t res = HOUSE_ARREST_E_UNKNOWN_ERROR; |
| 194 | 194 | ||
| 195 | plist_t dict = plist_new_dict(); | 195 | plist_t dict = plist_new_dict(); |
| 196 | plist_dict_insert_item(dict, "Command", plist_new_string(command)); | 196 | plist_dict_set_item(dict, "Command", plist_new_string(command)); |
| 197 | plist_dict_insert_item(dict, "Identifier", plist_new_string(appid)); | 197 | plist_dict_set_item(dict, "Identifier", plist_new_string(appid)); |
| 198 | 198 | ||
| 199 | res = house_arrest_send_request(client, dict); | 199 | res = house_arrest_send_request(client, dict); |
| 200 | 200 | ||
