diff options
author | Nikias Bassen | 2022-04-13 00:44:23 +0200 |
---|---|---|
committer | Nikias Bassen | 2022-04-13 00:44:23 +0200 |
commit | 9052c7fa33469957df59277120fbcea10d5ecbfe (patch) | |
tree | 713d00e0be8cca07cd310c6497bc0b8113c286c1 | |
parent | 86c53b45c26e68b49b8cc7fc2ba26019f5e00f29 (diff) | |
download | idevicerestore-9052c7fa33469957df59277120fbcea10d5ecbfe.tar.gz idevicerestore-9052c7fa33469957df59277120fbcea10d5ecbfe.tar.bz2 |
Print version string upon execution
-rw-r--r-- | src/idevicerestore.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 658566f..841296f 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -1755,6 +1755,8 @@ int main(int argc, char* argv[]) { return EXIT_FAILURE; } + info("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION); + if (ipsw) { client->ipsw = strdup(ipsw); } |