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/command-ssh.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/command-ssh.c')
-rw-r--r-- | agent/command-ssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/command-ssh.c b/agent/command-ssh.c index 8603a539b..e3a041012 100644 --- a/agent/command-ssh.c +++ b/agent/command-ssh.c @@ -2341,7 +2341,7 @@ ssh_key_to_protected_buffer (gcry_sexp_t key, const char *passphrase, gcry_sexp_sprint (key, GCRYSEXP_FMT_CANON, buffer_new, buffer_new_n); /* FIXME: guarantee? */ - err = agent_protect (buffer_new, passphrase, buffer, buffer_n); + err = agent_protect (buffer_new, passphrase, buffer, buffer_n, 0); out: |