aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--keyserver/ChangeLog5
-rw-r--r--keyserver/ksutil.c2
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 <[email protected]>
+
+ * 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 <[email protected]>
* 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("/");