diff options
author | David Shaw <dshaw@jabberwocky.com> | 2006-02-23 22:06:32 +0100 |
---|---|---|
committer | David Shaw <dshaw@jabberwocky.com> | 2006-02-23 22:06:32 +0100 |
commit | 0302c7e0ac328b4f21098d8a63f9ea111304f8a6 (patch) | |
tree | a69585942740ac1e9cb265ab1d0ce4948862b742 | |
parent | * keyserver.c (parse_keyserver_uri, add_canonical_option): Always append (diff) | |
download | gnupg2-0302c7e0ac328b4f21098d8a63f9ea111304f8a6.tar.xz gnupg2-0302c7e0ac328b4f21098d8a63f9ea111304f8a6.zip |
* ksutil.c (init_ks_options): Default include-revoked and include-subkeys
to on, as gpg isn't doing this any longer.
-rw-r--r-- | keyserver/ChangeLog | 5 | ||||
-rw-r--r-- | keyserver/ksutil.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/keyserver/ChangeLog b/keyserver/ChangeLog index 948fd75f1..154603593 100644 --- a/keyserver/ChangeLog +++ b/keyserver/ChangeLog @@ -1,3 +1,8 @@ +2006-02-23 David Shaw <dshaw@jabberwocky.com> + + * ksutil.c (init_ks_options): Default include-revoked and + include-subkeys to on, as gpg isn't doing this any longer. + 2006-02-22 David Shaw <dshaw@jabberwocky.com> * gpgkeys_hkp.c (get_name): A GETNAME query turns exact=on to cut diff --git a/keyserver/ksutil.c b/keyserver/ksutil.c index 8df684ed9..53fa294c2 100644 --- a/keyserver/ksutil.c +++ b/keyserver/ksutil.c @@ -86,6 +86,8 @@ init_ks_options(void) if(opt) { opt->action=KS_UNKNOWN; + opt->flags.include_revoked=1; + opt->flags.include_subkeys=1; opt->flags.check_cert=1; opt->timeout=DEFAULT_KEYSERVER_TIMEOUT; opt->path=strdup("/"); |