diff options
author | Justus Winter <justus@g10code.com> | 2016-10-10 15:20:14 +0200 |
---|---|---|
committer | Justus Winter <justus@g10code.com> | 2016-12-13 17:30:55 +0100 |
commit | 9147737f1c6894f38b855f3cf38cd33122a1ae2a (patch) | |
tree | 6a9a14cd197a39bd2aa116ca30277457206c271b /g10 | |
parent | g10,sm: Spell out --list-sigs. (diff) | |
download | gnupg2-9147737f1c6894f38b855f3cf38cd33122a1ae2a.tar.xz gnupg2-9147737f1c6894f38b855f3cf38cd33122a1ae2a.zip |
g10,sm: Spell out --check-sigs.
* g10/gpg.c (opts): Spell out option.
* sm/gpgsm.c (opts): Likewise.
* doc/gpg.texi: Update accordingly.
GnuPG-bug-id: 2700
Signed-off-by: Justus Winter <justus@g10code.com>
Diffstat (limited to 'g10')
-rw-r--r-- | g10/gpg.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -439,7 +439,9 @@ static ARGPARSE_OPTS opts[] = { ARGPARSE_c (aListKeys, "list-public-keys", "@" ), ARGPARSE_c (aListSigs, "list-signatures", N_("list keys and signatures")), ARGPARSE_c (aListSigs, "list-sigs", "@"), - ARGPARSE_c (aCheckKeys, "check-sigs",N_("list and check key signatures")), + ARGPARSE_c (aCheckKeys, "check-signatures", + N_("list and check key signatures")), + ARGPARSE_c (aCheckKeys, "check-sigs", "@"), ARGPARSE_c (oFingerprint, "fingerprint", N_("list keys and fingerprints")), ARGPARSE_c (aListSecretKeys, "list-secret-keys", N_("list secret keys")), ARGPARSE_c (aKeygen, "gen-key", |