aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2023-06-21 09:33:41 +0000
committerWerner Koch <[email protected]>2023-07-05 10:12:38 +0000
commit505e770b4c53abfad064cbabee5cb00f8e37d299 (patch)
tree852240c5b8fe0ed3a37194a7000aa21637b0d58b
parentdirmngr: New option --ignore-crl-extensions. (diff)
downloadgnupg-505e770b4c53abfad064cbabee5cb00f8e37d299.tar.gz
gnupg-505e770b4c53abfad064cbabee5cb00f8e37d299.zip
wks: Use export-clean for --mirror and --create.
* tools/wks-util.c (wks_get_key): Change from export-minimal to export-clean -- To properly work with tusted introducers et al. it is important to also upload valid key signatures to the Web Key Directory.
-rw-r--r--tools/wks-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wks-util.c b/tools/wks-util.c
index 2e8541491..2660c938c 100644
--- a/tools/wks-util.c
+++ b/tools/wks-util.c
@@ -246,7 +246,7 @@ wks_get_key (estream_t *r_key, const char *fingerprint, const char *addrspec,
ccparray_put (&ccp, "--always-trust");
if (!binary)
ccparray_put (&ccp, "--armor");
- ccparray_put (&ccp, "--export-options=export-minimal");
+ ccparray_put (&ccp, "--export-options=export-clean");
ccparray_put (&ccp, "--export-filter");
ccparray_put (&ccp, filterexp);
ccparray_put (&ccp, "--export");