diff options
author | Werner Koch <wk@gnupg.org> | 2016-01-14 12:22:33 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2016-01-14 12:22:33 +0100 |
commit | 360534bde770f4845669de223154216d249b954b (patch) | |
tree | fdb6fee4f48ee174144f2e3e392bc5a65398e988 /g10/gpg.c | |
parent | doc: Update whats-new-in-2.1 from gnupg-doc. (diff) | |
download | gnupg2-360534bde770f4845669de223154216d249b954b.tar.xz gnupg2-360534bde770f4845669de223154216d249b954b.zip |
gpg: Make --list-options show-usage the default.
* g10/gpg.c (main): Add LIST_SHOW_USAGE.
--
The usage flags are often useful and they don't take away much space
in a key listing. Thus it is better to have them enabled by default.
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to '')
-rw-r--r-- | g10/gpg.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2226,7 +2226,8 @@ main (int argc, char **argv) | VERIFY_SHOW_POLICY_URLS | VERIFY_SHOW_STD_NOTATIONS | VERIFY_SHOW_KEYSERVER_URLS); - opt.list_options = LIST_SHOW_UID_VALIDITY; + opt.list_options = (LIST_SHOW_UID_VALIDITY + | LIST_SHOW_USAGE); #ifdef NO_TRUST_MODELS opt.trust_model = TM_ALWAYS; #else |