diff options
author | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2019-04-11 21:21:06 +0200 |
---|---|---|
committer | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2019-04-14 10:01:23 +0200 |
commit | 947b84dcdee19d6a4b1fcad10618a2b4f505b3b9 (patch) | |
tree | 0fa179fa42b7e4040976886208f0d23d79613fd4 /src/reclaim/gnunet-reclaim.c | |
parent | 94f8e5437da8cc1c5ee38a333da2e1c68b3289f1 (diff) |
RECLAIM: improve help
Diffstat (limited to 'src/reclaim/gnunet-reclaim.c')
-rw-r--r-- | src/reclaim/gnunet-reclaim.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/reclaim/gnunet-reclaim.c b/src/reclaim/gnunet-reclaim.c index b10586feb..df6ebc66f 100644 --- a/src/reclaim/gnunet-reclaim.c +++ b/src/reclaim/gnunet-reclaim.c @@ -505,52 +505,52 @@ main(int argc, char *const argv[]) GNUNET_GETOPT_option_string ('a', "add", - NULL, - gettext_noop ("Add attribute"), + "NAME", + gettext_noop ("Add an attribute NAME"), &attr_name), GNUNET_GETOPT_option_string ('V', "value", - NULL, - gettext_noop ("Attribute value"), + "VALUE", + gettext_noop ("The attribute VALUE"), &attr_value), GNUNET_GETOPT_option_string ('e', "ego", - NULL, - gettext_noop ("Ego"), + "EGO", + gettext_noop ("The EGO to use"), &ego_name), GNUNET_GETOPT_option_string ('r', "rp", - NULL, - gettext_noop ("Audience (relying party)"), + "RP", + gettext_noop ("Specify the relying party for issue"), &rp), GNUNET_GETOPT_option_flag ('D', "dump", - gettext_noop ("List attributes for Ego"), + gettext_noop ("List attributes for EGO"), &list), GNUNET_GETOPT_option_string ('i', "issue", - NULL, - gettext_noop ("Issue a ticket"), + "A1,A2,...", + gettext_noop ("Issue a ticket for a set of attributes separated by comma"), &issue_attrs), GNUNET_GETOPT_option_string ('C', "consume", - NULL, + "TICKET", gettext_noop ("Consume a ticket"), &consume_ticket), GNUNET_GETOPT_option_string ('R', "revoke", - NULL, + "TICKET", gettext_noop ("Revoke a ticket"), &revoke_ticket), GNUNET_GETOPT_option_string ('t', "type", - NULL, + "TYPE", gettext_noop ("Type of attribute"), &type_str), GNUNET_GETOPT_option_relative_time ('E', "expiration", - NULL, + "INTERVAL", gettext_noop ("Expiration interval of the attribute"), &exp_interval), |