summaryrefslogtreecommitdiffstats
path: root/dev/afccheck.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-01-12 17:06:53 +0100
committerGravatar Martin Szulecki2010-01-12 17:06:53 +0100
commit9de537f6963e4e9770ee0aabfeb6982e3d422e69 (patch)
tree95e456eef72f85bb906326b6231d1ceb24fad38f /dev/afccheck.c
parentd07e1052c13ee472a34e90a4d87fbc3ddd2ad63f (diff)
downloadlibimobiledevice-9de537f6963e4e9770ee0aabfeb6982e3d422e69.tar.gz
libimobiledevice-9de537f6963e4e9770ee0aabfeb6982e3d422e69.tar.bz2
Allow lockdown client creation without performing full handshake
The lockdown constructor was doing more than needed. Pairing and session negotiation is now handled by lockdownd_client_new_with_handshake().
Diffstat (limited to 'dev/afccheck.c')
-rw-r--r--dev/afccheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/afccheck.c b/dev/afccheck.c
index 00c0f52..7a17a31 100644
--- a/dev/afccheck.c
+++ b/dev/afccheck.c
@@ -109,7 +109,7 @@ int main(int argc, char *argv[])
return 1;
}
- if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client, "afccheck")) {
+ if (LOCKDOWN_E_SUCCESS != lockdownd_client_new_with_handshake(phone, &client, "afccheck")) {
iphone_device_free(phone);
return 1;
}