diff options
author | Martin Szulecki | 2015-10-06 21:38:40 +0200 |
---|---|---|
committer | Martin Szulecki | 2015-10-06 21:38:40 +0200 |
commit | 6fd8536af092f689bee38cda75a801b5b8e710fa (patch) | |
tree | 2e04f6c53ea7a05a3a6c90514d024b4c76151529 /src/idevicerestore.c | |
parent | 950fbae391f34d6c31e087359515c755b49b7eff (diff) | |
download | idevicerestore-6fd8536af092f689bee38cda75a801b5b8e710fa.tar.gz idevicerestore-6fd8536af092f689bee38cda75a801b5b8e710fa.tar.bz2 |
Show project URL in usage output
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r-- | src/idevicerestore.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 36996cd..cc69bb1 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -2,7 +2,7 @@ * idevicerestore.c * Restore device firmware and filesystem * - * Copyright (c) 2010-2013 Martin Szulecki. All Rights Reserved. + * Copyright (c) 2010-2015 Martin Szulecki. All Rights Reserved. * Copyright (c) 2012-2013 Nikias Bassen. All Rights Reserved. * Copyright (c) 2010 Joshua Hill. All Rights Reserved. * @@ -21,6 +21,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -95,6 +99,7 @@ void usage(int argc, char* argv[]) { printf(" -C, --cache-path DIR\tUse specified directory for caching extracted\n"); printf(" \tor other reused files.\n"); printf("\n"); + printf("Homepage: <" PACKAGE_URL ">\n"); } static int load_version_data(struct idevicerestore_client_t* client) |