diff options
author | Martin Szulecki | 2015-10-06 21:29:08 +0200 |
---|---|---|
committer | Martin Szulecki | 2015-10-06 21:29:08 +0200 |
commit | af14742782fc0cb72d25006de9316842236ad5cb (patch) | |
tree | 74f07df564c2c0e954f868dbca6771784ee72ccf /tools | |
parent | e5ee2c0a5ee11b7a90c23ec443306d44dd8e2caa (diff) | |
download | libirecovery-af14742782fc0cb72d25006de9316842236ad5cb.tar.gz libirecovery-af14742782fc0cb72d25006de9316842236ad5cb.tar.bz2 |
Show project URL in usage output
Diffstat (limited to 'tools')
-rw-r--r-- | tools/irecovery.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/irecovery.c b/tools/irecovery.c index 1b1386a..3628b03 100644 --- a/tools/irecovery.c +++ b/tools/irecovery.c @@ -2,7 +2,7 @@ * irecovery.c * Software frontend for iBoot/iBSS communication with iOS devices * - * Copyright (c) 2012-2013 Martin Szulecki <m.szulecki@libimobiledevice.org> + * Copyright (c) 2012-2015 Martin Szulecki <martin.szulecki@libimobiledevice.org> * Copyright (c) 2010-2011 Chronic-Dev Team * Copyright (c) 2010-2011 Joshua Hill * Copyright (c) 2008-2011 Nicolas Haunold @@ -18,6 +18,10 @@ * Lesser General Public License for more details. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <unistd.h> @@ -330,6 +334,7 @@ static void print_usage(int argc, char **argv) { printf(" -v\t\tenable verbose output, repeat for higher verbosity\n"); printf(" -h\t\tprints this usage information\n"); printf("\n"); + printf("Homepage: <" PACKAGE_URL ">\n"); } int main(int argc, char* argv[]) { |