diff options
author | Nikias Bassen | 2009-12-07 18:07:56 +0100 |
---|---|---|
committer | Matt Colyer | 2009-12-07 19:45:03 -0800 |
commit | 213025d04ae8788be393b63e245f2805386f7f8a (patch) | |
tree | b1b5e69754b994aff382896d403d4b205592636e /include/libiphone | |
parent | 3bb7d9596e9b852b2e13185386cc0b71c952e84d (diff) | |
download | libimobiledevice-213025d04ae8788be393b63e245f2805386f7f8a.tar.gz libimobiledevice-213025d04ae8788be393b63e245f2805386f7f8a.tar.bz2 |
fix signature of lockdownd_stop_session
This removes the session_id parameter from lockdownd_stop_session
because the session_id is stored in the lockdownd_client_int structure
anyway.
Diffstat (limited to 'include/libiphone')
-rw-r--r-- | include/libiphone/lockdown.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libiphone/lockdown.h b/include/libiphone/lockdown.h index af58190..daa5800 100644 --- a/include/libiphone/lockdown.h +++ b/include/libiphone/lockdown.h @@ -60,7 +60,7 @@ lockdownd_error_t lockdownd_get_value(lockdownd_client_t client, const char *dom lockdownd_error_t lockdownd_set_value(lockdownd_client_t client, const char *domain, const char *key, plist_t value); lockdownd_error_t lockdownd_remove_value(lockdownd_client_t client, const char *domain, const char *key); lockdownd_error_t lockdownd_start_service(lockdownd_client_t client, const char *service, int *port); -lockdownd_error_t lockdownd_stop_session(lockdownd_client_t client, const char *session_id); +lockdownd_error_t lockdownd_stop_session(lockdownd_client_t client); lockdownd_error_t lockdownd_send(lockdownd_client_t client, plist_t plist); lockdownd_error_t lockdownd_recv(lockdownd_client_t client, plist_t *plist); lockdownd_error_t lockdownd_pair(lockdownd_client_t client, char *uuid, char *host_id); |