diff options
-rw-r--r-- | dirmngr/server.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dirmngr/server.c b/dirmngr/server.c index 66a74a890..3ad939a6b 100644 --- a/dirmngr/server.c +++ b/dirmngr/server.c @@ -2634,10 +2634,6 @@ cmd_ks_fetch (assuan_context_t ctx, char *line) ctrl->timeout = opt.connect_quick_timeout; line = skip_options (line); - err = ensure_keyserver (ctrl); /* FIXME: Why do we needs this here? */ - if (err) - goto leave; - /* Setup an output stream and perform the get. */ outfp = es_fopencookie (ctx, "w", data_line_cookie_functions); if (!outfp) @@ -2652,7 +2648,6 @@ cmd_ks_fetch (assuan_context_t ctx, char *line) ctrl->server_local->inhibit_data_logging = 0; } - leave: return leave_cmd (ctx, err); } |