diff options
author | Martin Szulecki | 2014-12-25 15:53:12 +0100 |
---|---|---|
committer | Martin Szulecki | 2015-01-12 18:18:18 +0100 |
commit | f7884fb0af7fe08dbb2989617b711a33945f329e (patch) | |
tree | 4549fa56d266bd9b42a493e49ee6c8f87be2b561 /include | |
parent | 89ed91e799fbb6b805122ca2ae381e25a7024d81 (diff) | |
download | libimobiledevice-f7884fb0af7fe08dbb2989617b711a33945f329e.tar.gz libimobiledevice-f7884fb0af7fe08dbb2989617b711a33945f329e.tar.bz2 |
lockdown: Fix documentation for client argument on pairing methods
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice/lockdown.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libimobiledevice/lockdown.h b/include/libimobiledevice/lockdown.h index 4f87235..fba5b9e 100644 --- a/include/libimobiledevice/lockdown.h +++ b/include/libimobiledevice/lockdown.h @@ -276,7 +276,7 @@ lockdownd_error_t lockdownd_receive(lockdownd_client_t client, plist_t *plist); /** * Pairs the device using the supplied pair record. * - * @param client The lockdown client to pair with. + * @param client The lockdown client * @param pair_record The pair record to use for pairing. If NULL is passed, then * the pair records from the current machine are used. New records will be * generated automatically when pairing is done for the first time. @@ -295,7 +295,7 @@ lockdownd_error_t lockdownd_pair(lockdownd_client_t client, lockdownd_pair_recor * lockdownd preference named TrustedHostAttached. Otherwise the host must be * paired using lockdownd_pair() first. * - * @param client The lockdown client to pair with. + * @param client The lockdown client * @param pair_record The pair record to validate pairing with. If NULL is * passed, then the pair record is read from the internal pairing record * management. @@ -312,7 +312,7 @@ lockdownd_error_t lockdownd_validate_pair(lockdownd_client_t client, lockdownd_p * Unpairs the device with the given HostID and removes the pairing records * from the device and host if the internal pairing record management is used. * - * @param client The lockdown client to pair with. + * @param client The lockdown client * @param pair_record The pair record to use for unpair. If NULL is passed, then * the pair records from the current machine are used. * |