diff options
author | Werner Koch <[email protected]> | 2014-12-03 10:28:10 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-12-03 10:28:10 +0000 |
commit | 17b4662984b4669d8dcbbd6705ccfbe6c263319c (patch) | |
tree | 9a05c91ba2c9cd32ca141f2af6f57f1d769f4dff /g10/gpg.c | |
parent | agent: Replace some sprintf. (diff) | |
download | gnupg-17b4662984b4669d8dcbbd6705ccfbe6c263319c.tar.gz gnupg-17b4662984b4669d8dcbbd6705ccfbe6c263319c.zip |
gpg: Remove option aliases --[no-]throw-keyid and --notation-data.
* g10/gpg.c (opts): Remove them.
* g10/options.h (opt): s/throw_keyid/throw_keyids/ and change users.
--
See mails starting
http://lists.gnupg.org/pipermail/gnupg-devel/2014-November/029128.html
Diffstat (limited to 'g10/gpg.c')
-rw-r--r-- | g10/gpg.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -587,15 +587,12 @@ static ARGPARSE_OPTS opts[] = { ARGPARSE_s_s (oCertDigestAlgo, "cert-digest-algo", "@"), ARGPARSE_s_s (oCompressAlgo,"compress-algo", "@"), ARGPARSE_s_s (oCompressAlgo, "compression-algo", "@"), /* Alias */ - ARGPARSE_s_n (oThrowKeyids, "throw-keyid", "@"), ARGPARSE_s_n (oThrowKeyids, "throw-keyids", "@"), - ARGPARSE_s_n (oNoThrowKeyids, "no-throw-keyid", "@"), ARGPARSE_s_n (oNoThrowKeyids, "no-throw-keyids", "@"), ARGPARSE_s_n (oShowPhotos, "show-photos", "@"), ARGPARSE_s_n (oNoShowPhotos, "no-show-photos", "@"), ARGPARSE_s_s (oPhotoViewer, "photo-viewer", "@"), ARGPARSE_s_s (oSetNotation, "set-notation", "@"), - ARGPARSE_s_s (oSetNotation, "notation-data", "@"), /* Alias */ ARGPARSE_s_s (oSigNotation, "sig-notation", "@"), ARGPARSE_s_s (oCertNotation, "cert-notation", "@"), @@ -2611,8 +2608,8 @@ main (int argc, char **argv) free_strlist(opt.comments); opt.comments=NULL; break; - case oThrowKeyids: opt.throw_keyid = 1; break; - case oNoThrowKeyids: opt.throw_keyid = 0; break; + case oThrowKeyids: opt.throw_keyids = 1; break; + case oNoThrowKeyids: opt.throw_keyids = 0; break; case oShowPhotos: deprecated_warning(configname,configlineno,"--show-photos", "--list-options ","show-photos"); |