diff options
author | Nikias Bassen | 2009-09-10 13:28:13 +0200 |
---|---|---|
committer | Martin Szulecki | 2009-09-12 11:41:38 +0200 |
commit | 1f6282ffddec7012df82fa929dfe72cfc74b063a (patch) | |
tree | 452c927c07806855f360ee9803111a1f72e05d3c /tools/iphoneinfo.c | |
parent | 26ce10634d277df51c4e9c2bd61b409df3f5b060 (diff) | |
download | libimobiledevice-1f6282ffddec7012df82fa929dfe72cfc74b063a.tar.gz libimobiledevice-1f6282ffddec7012df82fa929dfe72cfc74b063a.tar.bz2 |
Public API rework, extension and adaption to latest libusbmuxd-1.0 API.
Diffstat (limited to 'tools/iphoneinfo.c')
-rw-r--r-- | tools/iphoneinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/iphoneinfo.c b/tools/iphoneinfo.c index 7e275b2..16a1069 100644 --- a/tools/iphoneinfo.c +++ b/tools/iphoneinfo.c @@ -121,7 +121,7 @@ int main(int argc, char *argv[]) } if (uuid[0] != 0) { - ret = iphone_get_device_by_uuid(&phone, uuid); + ret = iphone_device_new(&phone, uuid); if (ret != IPHONE_E_SUCCESS) { printf("No device found with uuid %s, is it plugged in?\n", uuid); return -1; @@ -129,7 +129,7 @@ int main(int argc, char *argv[]) } else { - ret = iphone_get_device(&phone); + ret = iphone_device_new(&phone, NULL); if (ret != IPHONE_E_SUCCESS) { printf("No device found, is it plugged in?\n"); return -1; |