diff options
author | Ben Kibbey <[email protected]> | 2011-06-29 00:35:13 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-06-29 11:17:25 +0000 |
commit | 137e3a0fbcdc579b56860651a9b5554f9449ed1e (patch) | |
tree | 26b354dda466de882f4c0bd50d576c67393f2f6a /agent/protect-tool.c | |
parent | Fixed an URL typo in the FAQ. (diff) | |
download | gnupg-137e3a0fbcdc579b56860651a9b5554f9449ed1e.tar.gz gnupg-137e3a0fbcdc579b56860651a9b5554f9449ed1e.zip |
Added gpg-agent OPTION "s2k-count".
When unset or 0, the calibrated count will be used.
Diffstat (limited to 'agent/protect-tool.c')
-rw-r--r-- | agent/protect-tool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/protect-tool.c b/agent/protect-tool.c index 512019b80..a2531438c 100644 --- a/agent/protect-tool.c +++ b/agent/protect-tool.c @@ -333,7 +333,7 @@ read_and_protect (const char *fname) return; pw = get_passphrase (1); - rc = agent_protect (key, pw, &result, &resultlen); + rc = agent_protect (key, pw, &result, &resultlen, 0); release_passphrase (pw); xfree (key); if (rc) |