aboutsummaryrefslogtreecommitdiffstats
path: root/keyserver/ksutil.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2006-02-23 21:06:32 +0000
committerDavid Shaw <[email protected]>2006-02-23 21:06:32 +0000
commit0302c7e0ac328b4f21098d8a63f9ea111304f8a6 (patch)
treea69585942740ac1e9cb265ab1d0ce4948862b742 /keyserver/ksutil.c
parent* keyserver.c (parse_keyserver_uri, add_canonical_option): Always append (diff)
downloadgnupg-0302c7e0ac328b4f21098d8a63f9ea111304f8a6.tar.gz
gnupg-0302c7e0ac328b4f21098d8a63f9ea111304f8a6.zip
* ksutil.c (init_ks_options): Default include-revoked and include-subkeys
to on, as gpg isn't doing this any longer.
Diffstat (limited to '')
-rw-r--r--keyserver/ksutil.c2
1 files changed, 2 insertions, 0 deletions
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("/");