summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2015-10-06 21:38:40 +0200
committerGravatar Martin Szulecki2015-10-06 21:38:40 +0200
commit6fd8536af092f689bee38cda75a801b5b8e710fa (patch)
tree2e04f6c53ea7a05a3a6c90514d024b4c76151529 /src
parent950fbae391f34d6c31e087359515c755b49b7eff (diff)
downloadidevicerestore-6fd8536af092f689bee38cda75a801b5b8e710fa.tar.gz
idevicerestore-6fd8536af092f689bee38cda75a801b5b8e710fa.tar.bz2
Show project URL in usage output
Diffstat (limited to 'src')
-rw-r--r--src/idevicerestore.c7
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)