X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Fclient.c;h=ac7380c8dee636111bae4892f4b5a6f69fac2495;hp=38ac3d78cd43a5fdb32b775f77437f3fae2ec7c5;hb=e97610b3e0040428e2cb74f846ade31a0194074e;hpb=6f7757087a49db5fb3fa4f3b12b8b67ebbbe3aa3 diff --git a/client/client.c b/client/client.c index 38ac3d7..ac7380c 100644 --- a/client/client.c +++ b/client/client.c @@ -4885,12 +4885,12 @@ static void client(void) static void show_version(void) { - char vstr[20]; + char vstr[20], sha1_str[41]; - yaz_version(vstr, 0); - printf("YAZ version: %s\n", YAZ_VERSION); - if (strcmp(vstr, YAZ_VERSION)) - printf("YAZ DLL/SO: %s\n", vstr); + yaz_version(vstr, sha1_str); + printf("YAZ version: %s %s\n", YAZ_VERSION, YAZ_VERSION_SHA1); + if (strcmp(sha1_str, YAZ_VERSION_SHA1)) + printf("YAZ DLL/SO: %s %s\n", vstr, sha1_str); exit(0); }