summaryrefslogtreecommitdiffstats
path: root/net/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'net/src/lib.rs')
-rw-r--r--net/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/src/lib.rs b/net/src/lib.rs
index 17c790aa..b339daf9 100644
--- a/net/src/lib.rs
+++ b/net/src/lib.rs
@@ -214,8 +214,7 @@ impl KeyServer {
Ok(u) => u,
};
- let mut w = match Writer::new(Vec::new(),
- Kind::PublicKey, &[]) {
+ let mut w = match Writer::new(Vec::new(), Kind::PublicKey) {
Ok(v) => v,
Err(e) => return Box::new(future::err(e.into())),
};