Skip to content

Commit

Permalink
tools: Use libusbmuxd_version() instead of PACKAGE_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia authored and nikias committed Nov 29, 2024
1 parent 22a4e4c commit 5d71858
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/inetcat.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ int main(int argc, char **argv)
print_usage(argc, argv, 0);
return 0;
case 'v':
printf("%s %s\n", TOOL_NAME, PACKAGE_VERSION);
printf("%s %s\n", TOOL_NAME, libusbmuxd_version());
return 0;
default:
print_usage(argc, argv, 1);
Expand Down
2 changes: 1 addition & 1 deletion tools/iproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ int main(int argc, char **argv)
print_usage(argc, argv, 0);
return 0;
case 'v':
printf("%s %s\n", TOOL_NAME, PACKAGE_VERSION);
printf("%s %s\n", TOOL_NAME, libusbmuxd_version());
return 0;
default:
print_usage(argc, argv, 1);
Expand Down

0 comments on commit 5d71858

Please sign in to comment.