1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-01 22:28:02 +02:00

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.
This commit is contained in:
Werner Koch 2024-03-06 10:00:37 +01:00
parent 8cd920f6aa
commit 5999d95e04
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

@ -1978,7 +1978,7 @@ mirror_one_key (estream_t key)
continue; /* No mail box or already processed. */ continue; /* No mail box or already processed. */
if (uid->expired) if (uid->expired)
continue; continue;
if (!domain_matches_mbox (domain, uid->mbox)) if (*domain && !domain_matches_mbox (domain, uid->mbox))
continue; /* We don't want this one. */ continue; /* We don't want this one. */
if (is_in_blacklist (uid->mbox)) if (is_in_blacklist (uid->mbox))
continue; continue;