eet: Add options -V/--version to show eet version.

Requested to ease debugging on deployments.

ref T2213
This commit is contained in:
Stefan Schmidt 2015-04-02 15:40:05 +02:00
parent 3d5357b6ab
commit 0774045511
1 changed files with 3 additions and 0 deletions

View File

@ -463,6 +463,7 @@ help:
" eet -s FILE.EET PRIVATE_KEY PUBLIC_KEY sign FILE.EET with PRIVATE_KEY and attach PUBLIC_KEY as it's certificate\n"
" eet -t FILE.EET give some statistic about a file\n"
" eet -h print out this help message\n"
" eet -V [--version] show program version\n"
);
eet_shutdown();
return -1;
@ -470,6 +471,8 @@ help:
if ((!strncmp(argv[1], "-h", 2)))
goto help;
else if ((!strncmp(argv[1], "-V", 2)) || (!strncmp(argv[1], "--version",9 )))
printf("Version: %s\n", PACKAGE_VERSION);
else if (((!strcmp(argv[1], "-l")) || (!strcmp(argv[1], "-v"))) && (argc > 2))
{
if (argc == 3)