summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-08-19 17:34:10 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-08-20 10:07:29 +0200
commit4ce96162f089e62d0d27ab305c227e0823439c10 (patch)
tree0441f93e8f76299a8d2b2c5db155df049c4c2f83 /tool
parent7555cfeafb28fccd93aac9441cc18f985036cfc7 (diff)
net: Drop SKS pool in favor of keys.openpgp.org.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/sq.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/sq.rs b/tool/src/sq.rs
index 0e8a1439..02350b38 100644
--- a/tool/src/sq.rs
+++ b/tool/src/sq.rs
@@ -304,7 +304,7 @@ fn real_main() -> Result<(), failure::Error> {
let mut ks = if let Some(uri) = m.value_of("server") {
KeyServer::new(&ctx, &uri)
} else {
- KeyServer::sks_pool(&ctx)
+ KeyServer::keys_openpgp_org(&ctx)
}.context("Malformed keyserver URI")?;
match m.subcommand() {