summaryrefslogtreecommitdiffstats
path: root/src/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.c')
-rw-r--r--src/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.c b/src/client.c
index b2e3644..8f7d945 100644
--- a/src/client.c
+++ b/src/client.c
@@ -311,11 +311,11 @@ static int start_listen(struct mux_client *client)
311 int count, i; 311 int count, i;
312 312
313 client->state = CLIENT_LISTEN; 313 client->state = CLIENT_LISTEN;
314 count = device_get_count(); 314 count = device_get_count(0);
315 if(!count) 315 if(!count)
316 return 0; 316 return 0;
317 devs = malloc(sizeof(struct device_info) * count); 317 devs = malloc(sizeof(struct device_info) * count);
318 count = device_get_list(devs); 318 count = device_get_list(0, devs);
319 319
320 // going to need a larger buffer for many devices 320 // going to need a larger buffer for many devices
321 uint32_t needed_buffer = count * (sizeof(struct usbmuxd_device_record) + sizeof(struct usbmuxd_header)) + REPLY_BUF_SIZE; 321 uint32_t needed_buffer = count * (sizeof(struct usbmuxd_device_record) + sizeof(struct usbmuxd_header)) + REPLY_BUF_SIZE;