mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
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. (backported from commit 23d2ef83cda644c6a83499f9327350d3371e8a17)
This commit is contained in:
parent
dde8ddffd3
commit
78e0a30fb1
@ -1245,7 +1245,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, &cache_marker)
|
||||
pw = cacheid ? agent_get_cache (cacheid, CACHE_MODE_USER, &cache_marker)
|
||||
: NULL;
|
||||
if (pw)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user