Skip to content

Commit

Permalink
Print libtatsu version alongside idevicerestore version
Browse files Browse the repository at this point in the history
  • Loading branch information
nikias committed Sep 18, 2024
1 parent 9764c08 commit dab6a34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/idevicerestore.c
Original file line number Diff line number Diff line change
Expand Up @@ -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': {
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit dab6a34

Please sign in to comment.