From 23d2ef83cda644c6a83499f9327350d3371e8a17 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Wed, 20 May 2015 16:13:55 +0200 Subject: [PATCH] agent: Cleanup caching code for command GET_PASSPHRASE. * agent/command.c (cmd_get_passphrase): Read from the user cache. -- We used to read the passphrase with mode CACHE_MODE_NORMAL but we put it into the cache with CACHE_MODE_USER. However, agent_get_cache does not yet distinguish between them and thus this does not change anything. --- agent/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/command.c b/agent/command.c index a5dce44be..f71325d55 100644 --- a/agent/command.c +++ b/agent/command.c @@ -1495,7 +1495,7 @@ cmd_get_passphrase (assuan_context_t ctx, char *line) if (!strcmp (desc, "X")) desc = NULL; - pw = cacheid ? agent_get_cache (cacheid, CACHE_MODE_NORMAL) : NULL; + pw = cacheid ? agent_get_cache (cacheid, CACHE_MODE_USER) : NULL; if (pw) { rc = send_back_passphrase (ctx, opt_data, pw);