Skip to content

Commit

Permalink
inetcat: Update usage to better reflect what the tool actually does
Browse files Browse the repository at this point in the history
  • Loading branch information
nikias committed May 31, 2020
1 parent e8e1f55 commit c04bb75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/inetcat.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ static void print_usage(int argc, char **argv, int is_error)
{
char *name = NULL;
name = strrchr(argv[0], '/');
fprintf(is_error ? stderr : stdout, "Usage: %s [OPTIONS] DEVICE_PORT\n", (name ? name + 1: argv[0]));
fprintf(is_error ? stderr : stdout, "Usage: %s [OPTIONS] DEVICE_PORT\n\n", (name ? name + 1: argv[0]));
fprintf(is_error ? stderr : stdout,
"Proxy that enables TCP service access to iOS devices.\n\n" \
"Opens a read/write interface via STDIN/STDOUT to a TCP port on a usbmux device.\n\n" \
" -u, --udid UDID target specific device by UDID\n" \
" -n, --network connect to network device\n" \
" -l, --local connect to USB device (default)\n" \
Expand Down

0 comments on commit c04bb75

Please sign in to comment.