summaryrefslogtreecommitdiffstats
path: root/tools/ideviceenterrecovery.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2020-06-04 02:46:09 +0200
committerGravatar Martin Szulecki2020-06-04 02:46:09 +0200
commitbc2a1554dfeeb8c7e20d1c3b80e26ec69759743e (patch)
tree2583c0ccae9fa2f1b3606118b49bc530749777f9 /tools/ideviceenterrecovery.c
parente1cfe7f6d431b233a151a20b9efc8a8ccb34ab51 (diff)
downloadlibimobiledevice-bc2a1554dfeeb8c7e20d1c3b80e26ec69759743e.tar.gz
libimobiledevice-bc2a1554dfeeb8c7e20d1c3b80e26ec69759743e.tar.bz2
Unify usage output in all tools and add bugreport URL
Diffstat (limited to 'tools/ideviceenterrecovery.c')
-rw-r--r--tools/ideviceenterrecovery.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/ideviceenterrecovery.c b/tools/ideviceenterrecovery.c
index ec9093b..868ee7d 100644
--- a/tools/ideviceenterrecovery.c
+++ b/tools/ideviceenterrecovery.c
@@ -40,11 +40,15 @@ static void print_usage(int argc, char **argv)
40 40
41 name = strrchr(argv[0], '/'); 41 name = strrchr(argv[0], '/');
42 printf("Usage: %s [OPTIONS] UDID\n", (name ? name + 1: argv[0])); 42 printf("Usage: %s [OPTIONS] UDID\n", (name ? name + 1: argv[0]));
43 printf("Makes a device with the supplied UDID enter recovery mode immediately.\n\n"); 43 printf("\n");
44 printf("Makes a device with the supplied UDID enter recovery mode immediately.\n");
45 printf("\n");
46 printf("OPTIONS:\n");
44 printf(" -d, --debug\t\tenable communication debugging\n"); 47 printf(" -d, --debug\t\tenable communication debugging\n");
45 printf(" -h, --help\t\tprints usage information\n"); 48 printf(" -h, --help\t\tprints usage information\n");
46 printf("\n"); 49 printf("\n");
47 printf("Homepage: <" PACKAGE_URL ">\n"); 50 printf("Homepage: <" PACKAGE_URL ">\n");
51 printf("Bug Reports: <" PACKAGE_BUGREPORT ">\n");
48} 52}
49 53
50int main(int argc, char *argv[]) 54int main(int argc, char *argv[])