summaryrefslogtreecommitdiffstats
path: root/src/property_list_service.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-01-22 15:00:16 +0100
committerGravatar Martin Szulecki2010-01-22 15:00:16 +0100
commit82d682b850329f2660fa6c6cc658ec03b5ffbadc (patch)
tree427e63c6e788ced9ae7de6c930dd4ee1644bba72 /src/property_list_service.c
parent3183e7c96e7f66d9f0b215d549912411b146dd77 (diff)
downloadlibimobiledevice-82d682b850329f2660fa6c6cc658ec03b5ffbadc.tar.gz
libimobiledevice-82d682b850329f2660fa6c6cc658ec03b5ffbadc.tar.bz2
Rename all *_recv functions to *_receive to match underlying API
Diffstat (limited to 'src/property_list_service.c')
-rw-r--r--src/property_list_service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/property_list_service.c b/src/property_list_service.c
index 39483c2..dbf02d6 100644
--- a/src/property_list_service.c
+++ b/src/property_list_service.c
@@ -211,7 +211,7 @@ property_list_service_error_t property_list_service_send_binary_plist(property_l
* communication error occurs, or PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR
* when an unspecified error occurs.
*/
-static property_list_service_error_t internal_plist_recv_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout)
+static property_list_service_error_t internal_plist_receive_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout)
{
property_list_service_error_t res = PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR;
uint32_t pktlen = 0;
@@ -282,7 +282,7 @@ static property_list_service_error_t internal_plist_recv_timeout(property_list_s
*/
property_list_service_error_t property_list_service_receive_plist_with_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout)
{
- return internal_plist_recv_timeout(client, plist, timeout);
+ return internal_plist_receive_timeout(client, plist, timeout);
}
/**
@@ -306,7 +306,7 @@ property_list_service_error_t property_list_service_receive_plist_with_timeout(p
*/
property_list_service_error_t property_list_service_receive_plist(property_list_service_client_t client, plist_t *plist)
{
- return internal_plist_recv_timeout(client, plist, 10000);
+ return internal_plist_receive_timeout(client, plist, 10000);
}
/**