diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/MobileSync.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/MobileSync.c b/src/MobileSync.c index 97a1320..827ed35 100644 --- a/src/MobileSync.c +++ b/src/MobileSync.c | |||
| @@ -59,14 +59,14 @@ static mobilesync_error_t mobilesync_error(device_link_service_error_t err) | |||
| 59 | return MOBILESYNC_E_UNKNOWN_ERROR; | 59 | return MOBILESYNC_E_UNKNOWN_ERROR; |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | mobilesync_error_t mobilesync_client_new(iphone_device_t device, int dst_port, | 62 | mobilesync_error_t mobilesync_client_new(iphone_device_t device, uint16_t port, |
| 63 | mobilesync_client_t * client) | 63 | mobilesync_client_t * client) |
| 64 | { | 64 | { |
| 65 | if (!device || dst_port == 0 || !client || *client) | 65 | if (!device || port == 0 || !client || *client) |
| 66 | return MOBILESYNC_E_INVALID_ARG; | 66 | return MOBILESYNC_E_INVALID_ARG; |
| 67 | 67 | ||
| 68 | device_link_service_client_t dlclient = NULL; | 68 | device_link_service_client_t dlclient = NULL; |
| 69 | mobilesync_error_t ret = mobilesync_error(device_link_service_client_new(device, dst_port, &dlclient)); | 69 | mobilesync_error_t ret = mobilesync_error(device_link_service_client_new(device, port, &dlclient)); |
| 70 | if (ret != MOBILESYNC_E_SUCCESS) { | 70 | if (ret != MOBILESYNC_E_SUCCESS) { |
| 71 | return ret; | 71 | return ret; |
| 72 | } | 72 | } |
