diff options
author | 2024-11-28 18:42:31 +0100 | |
---|---|---|
committer | 2024-11-29 04:27:13 +0100 | |
commit | 5d718587177561f3084ed13db4b72a56912d27f5 (patch) | |
tree | bdd2db633ce43e8f46c8683608ea97ab0513151e /tools | |
parent | 22a4e4c79f8eeac3e200996997d3494bc0677304 (diff) | |
download | libusbmuxd-5d718587177561f3084ed13db4b72a56912d27f5.tar.gz libusbmuxd-5d718587177561f3084ed13db4b72a56912d27f5.tar.bz2 |
tools: Use libusbmuxd_version() instead of PACKAGE_VERSION
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inetcat.c | 2 | ||||
-rw-r--r-- | tools/iproxy.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/inetcat.c b/tools/inetcat.c index 9e20e8b..1d52341 100644 --- a/tools/inetcat.c +++ b/tools/inetcat.c @@ -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); diff --git a/tools/iproxy.c b/tools/iproxy.c index 271a93f..1a8e5b8 100644 --- a/tools/iproxy.c +++ b/tools/iproxy.c @@ -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); |