diff options
author | 2024-09-18 23:44:48 +0200 | |
---|---|---|
committer | 2024-09-18 23:44:48 +0200 | |
commit | dab6a34ef1e38a781952f53aa9746a50202f31b3 (patch) | |
tree | 749a9803e982bafa24459e9d2d2acb1cefe987dd /src | |
parent | 9764c08e4f0ca6ca0d7ebdbd9df3841c3bb691e6 (diff) | |
download | idevicerestore-dab6a34ef1e38a781952f53aa9746a50202f31b3.tar.gz idevicerestore-dab6a34ef1e38a781952f53aa9746a50202f31b3.tar.bz2 |
Print libtatsu version alongside idevicerestore version
Diffstat (limited to 'src')
-rw-r--r-- | src/idevicerestore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index ae48dea..3042ce3 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -1837,7 +1837,7 @@ int main(int argc, char* argv[]) { break; case 'v': - info("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION); + info("%s %s (libtatsu %s)\n", PACKAGE_NAME, PACKAGE_VERSION, libtatsu_version()); return EXIT_SUCCESS; case 'T': { @@ -1895,7 +1895,7 @@ int main(int argc, char* argv[]) { return EXIT_FAILURE; } - info("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION); + info("%s %s (libtatsu %s)\n", PACKAGE_NAME, PACKAGE_VERSION, libtatsu_version()); if (ipsw) { // verify if ipsw file exists |