diff options
author | Werner Koch <[email protected]> | 2024-03-06 09:00:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-03-06 09:00:37 +0000 |
commit | 37cc255e49427dfaaa9907fe789dc6e84484d532 (patch) | |
tree | 1b36e996f7cd7d9084926c3edfa901ab58eb2481 /g10/trustdb.c | |
parent | gpg: Fix mixed invocation with --trusted-keys and --no-options. (diff) | |
download | gnupg-37cc255e49427dfaaa9907fe789dc6e84484d532.tar.gz gnupg-37cc255e49427dfaaa9907fe789dc6e84484d532.zip |
wks: Make gpg-wks-client --mirror work w/o args.
* tools/gpg-wks-client.c (mirror_one_key): Test for no domain
specified.
--
The code did not really work if no domain was given. It worked but
filtered out all keys so that no key was actually exported.
Diffstat (limited to 'g10/trustdb.c')
-rw-r--r-- | g10/trustdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c index 3f30ef3d4..6de9f6b66 100644 --- a/g10/trustdb.c +++ b/g10/trustdb.c @@ -72,7 +72,7 @@ static struct key_item *utk_list; /* all ultimately trusted keys */ static struct key_item *trusted_key_list; static int any_trusted_key_seen; -/* Flag whether a trustdb chekc is pending. */ +/* Flag whether a trustdb check is pending. */ static int pending_check_trustdb; |