diff options
Diffstat (limited to 'src/property_list_service.c')
| -rw-r--r-- | src/property_list_service.c | 6 |
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 | |||
| 211 | * communication error occurs, or PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR | 211 | * communication error occurs, or PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR |
| 212 | * when an unspecified error occurs. | 212 | * when an unspecified error occurs. |
| 213 | */ | 213 | */ |
| 214 | static property_list_service_error_t internal_plist_recv_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout) | 214 | static property_list_service_error_t internal_plist_receive_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout) |
| 215 | { | 215 | { |
| 216 | property_list_service_error_t res = PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR; | 216 | property_list_service_error_t res = PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR; |
| 217 | uint32_t pktlen = 0; | 217 | uint32_t pktlen = 0; |
| @@ -282,7 +282,7 @@ static property_list_service_error_t internal_plist_recv_timeout(property_list_s | |||
| 282 | */ | 282 | */ |
| 283 | property_list_service_error_t property_list_service_receive_plist_with_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout) | 283 | property_list_service_error_t property_list_service_receive_plist_with_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout) |
| 284 | { | 284 | { |
| 285 | return internal_plist_recv_timeout(client, plist, timeout); | 285 | return internal_plist_receive_timeout(client, plist, timeout); |
| 286 | } | 286 | } |
| 287 | 287 | ||
| 288 | /** | 288 | /** |
| @@ -306,7 +306,7 @@ property_list_service_error_t property_list_service_receive_plist_with_timeout(p | |||
| 306 | */ | 306 | */ |
| 307 | property_list_service_error_t property_list_service_receive_plist(property_list_service_client_t client, plist_t *plist) | 307 | property_list_service_error_t property_list_service_receive_plist(property_list_service_client_t client, plist_t *plist) |
| 308 | { | 308 | { |
| 309 | return internal_plist_recv_timeout(client, plist, 10000); | 309 | return internal_plist_receive_timeout(client, plist, 10000); |
| 310 | } | 310 | } |
| 311 | 311 | ||
| 312 | /** | 312 | /** |
