summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2010-11-23 02:45:36 +0100
committerGravatar Martin Szulecki2011-04-11 19:42:18 +0200
commit88bdba29da9faab1520881d8f7b6929baeb109ae (patch)
treebe9787019273d0f6ed999837a381c11f141e647f /tools
parent18e4f053bced9ead787e23e0526cb758a9979af1 (diff)
downloadlibimobiledevice-88bdba29da9faab1520881d8f7b6929baeb109ae.tar.gz
libimobiledevice-88bdba29da9faab1520881d8f7b6929baeb109ae.tar.bz2
idevicebackup4: actually print info and list data
Diffstat (limited to 'tools')
-rw-r--r--tools/idevicebackup4.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/idevicebackup4.c b/tools/idevicebackup4.c
index 8c4fe79..c682e76 100644
--- a/tools/idevicebackup4.c
+++ b/tools/idevicebackup4.c
@@ -1592,6 +1592,13 @@ checkpoint:
1592 if (str) { 1592 if (str) {
1593 free(str); 1593 free(str);
1594 } 1594 }
1595 nn = plist_dict_get_item(node_tmp, "Content");
1596 if (nn && (plist_get_node_type(nn) == PLIST_STRING)) {
1597 str = NULL;
1598 plist_get_string_val(nn, &str);
1599 printf("Content:\n%s\n", str);
1600 free(str);
1601 }
1595 break; 1602 break;
1596 } 1603 }
1597 1604