From 25649e0caac281e4a6b23d8051848f756f4fa86a Mon Sep 17 00:00:00 2001 From: Johannes Bauer Date: Wed, 23 Oct 2019 22:32:35 +0200 Subject: [PATCH] Add luksrku version in help page Before we forget to include it, put it right in there so it's easy to determine which version it was built from. --- pgmopts.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pgmopts.c b/pgmopts.c index 810448e..4ae2857 100644 --- a/pgmopts.c +++ b/pgmopts.c @@ -45,6 +45,8 @@ static void show_syntax(const char *errmsg, int argc, char **argv) { fprintf(stderr, " %s client Unlock LUKS volumes by querying a key server\n", argv[0]); fprintf(stderr, "\n"); fprintf(stderr, "For futher help: %s (command) --help\n", argv[0]); + fprintf(stderr, "\n"); + fprintf(stderr, "luksrku version " BUILD_REVISION "\n"); } static bool edit_callback(enum argparse_edit_option_t option, const char *value, argparse_edit_errmsg_callback_t errmsg_callback) {