diff options
author | Nikias Bassen | 2020-06-10 00:47:33 +0200 |
---|---|---|
committer | Nikias Bassen | 2020-06-10 00:47:33 +0200 |
commit | 8049f1a165c2cf716d8b459e1a51ca4aaaf71a27 (patch) | |
tree | 92b5f6f46c07cb207a3053d54addc32b817c98e5 /include | |
parent | 6cd994d7f030e069a3ea5efe0aa3266fd887724c (diff) | |
download | libimobiledevice-8049f1a165c2cf716d8b459e1a51ca4aaaf71a27.tar.gz libimobiledevice-8049f1a165c2cf716d8b459e1a51ca4aaaf71a27.tar.bz2 |
Fix inconsistent declaration of function parameter in another public header
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice/mobileactivation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libimobiledevice/mobileactivation.h b/include/libimobiledevice/mobileactivation.h index b7f8064..51de205 100644 --- a/include/libimobiledevice/mobileactivation.h +++ b/include/libimobiledevice/mobileactivation.h @@ -138,7 +138,7 @@ mobileactivation_error_t mobileactivation_create_activation_info(mobileactivatio * provided by mobileactivation_create_activation_session_info(). * * @param client The mobileactivation client - * @aram handshake_result The handshake result returned from drmHandshake + * @aram handshake_response The handshake response returned from drmHandshake * @param info Pointer to a plist_t variable that will be set to the * activation info created by the mobileactivation service. The * consumer is responsible for freeing the returned object using @@ -147,7 +147,7 @@ mobileactivation_error_t mobileactivation_create_activation_info(mobileactivatio * @return MOBILEACTIVATION_E_SUCCESS on success, or an MOBILEACTIVATION_E_* * error code otherwise. */ -mobileactivation_error_t mobileactivation_create_activation_info_with_session(mobileactivation_client_t client, plist_t handshake_result, plist_t *info); +mobileactivation_error_t mobileactivation_create_activation_info_with_session(mobileactivation_client_t client, plist_t handshake_response, plist_t *info); /** * Activates the device with the given activation record. |