Skip to content

Commit

Permalink
iproxy: Fix typo in log messages
Browse files Browse the repository at this point in the history
Thanks to @p0358 for reporting.
  • Loading branch information
nikias committed Sep 1, 2023
1 parent 8d30a55 commit 30e678d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/iproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ static void *acceptor_thread(void *arg)
if (!socket_addr_to_string(saddr, addrtxt, sizeof(addrtxt))) {
fprintf(stderr, "Failed to convert network address: %d (%s)\n", errno, strerror(errno));
}
fprintf(stdout, "Requesting connecion to NETWORK device %s (serial: %s), port %d\n", addrtxt, dev->udid, cdata->device_port);
fprintf(stdout, "Requesting connection to NETWORK device %s (serial: %s), port %d\n", addrtxt, dev->udid, cdata->device_port);
cdata->sfd = socket_connect_addr(saddr, cdata->device_port);
} else if (dev->conn_type == CONNECTION_TYPE_USB) {
fprintf(stdout, "Requesting connecion to USB device handle %d (serial: %s), port %d\n", dev->handle, dev->udid, cdata->device_port);
fprintf(stdout, "Requesting connection to USB device handle %d (serial: %s), port %d\n", dev->handle, dev->udid, cdata->device_port);

cdata->sfd = usbmuxd_connect(dev->handle, cdata->device_port);
}
Expand Down

0 comments on commit 30e678d

Please sign in to comment.