aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions.c
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2018-10-18 11:19:36 +0300
committergramanas <anastasis.gramm2@gmail.com>2018-10-18 11:19:36 +0300
commit505dd4d9170c1435777eb6fcd306d078056ea35e (patch)
tree9fd0fc9850df1439b2b7513a0c1501c985c590e6 /src/actions.c
parent4c6d49f7d8ee1e6e6b849f16dc821e83d8967af8 (diff)
downloadck-505dd4d9170c1435777eb6fcd306d078056ea35e.tar.gz
ck-505dd4d9170c1435777eb6fcd306d078056ea35e.tar.bz2
ck-505dd4d9170c1435777eb6fcd306d078056ea35e.zip
Add man option to help
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/actions.c b/src/actions.c
index 501d952..417f9ce 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -269,9 +269,23 @@ int run_SEARCH(UserOpt *opt, Conf *conf) {
int run_HELP(UserOpt *opt, Conf *conf) {
UNUSED(conf);
+ char tmp[STR_M];
+ if (strcmp(list_get(opt->args), "man") == 0) {
+#define X(ACTION) \
+ get_possible_action_strings(tmp, CKA_##ACTION); \
+ HELP("%s:\n%s", #ACTION, tmp); \
+ print_##ACTION##_help(); \
+ HELP("");
+ CK_ACTIONS
+#undef X
+ return 0;
+ }
+
switch(parser_get_action(list_get(opt->args), NULL)) {
#define X(ACTION) \
case CKA_##ACTION: \
+ get_possible_action_strings(tmp, CKA_##ACTION); \
+ HELP("%s:\n%s", #ACTION, tmp); \
print_##ACTION##_help(); \
return 0;
CK_ACTIONS