diff options
author | Ben Kibbey <bjk@luxsci.net> | 2011-06-29 02:35:13 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2011-06-29 13:17:25 +0200 |
commit | 137e3a0fbcdc579b56860651a9b5554f9449ed1e (patch) | |
tree | 26b354dda466de882f4c0bd50d576c67393f2f6a /agent/t-protect.c | |
parent | Fixed an URL typo in the FAQ. (diff) | |
download | gnupg2-137e3a0fbcdc579b56860651a9b5554f9449ed1e.tar.xz gnupg2-137e3a0fbcdc579b56860651a9b5554f9449ed1e.zip |
Added gpg-agent OPTION "s2k-count".
When unset or 0, the calibrated count will be used.
Diffstat (limited to '')
-rw-r--r-- | agent/t-protect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/t-protect.c b/agent/t-protect.c index a14e5e1cc..4b6e0b48c 100644 --- a/agent/t-protect.c +++ b/agent/t-protect.c @@ -174,7 +174,7 @@ test_agent_protect (void) { ret = agent_protect ((const unsigned char*)specs[i].key, specs[i].passphrase, - &specs[i].result, &specs[i].resultlen); + &specs[i].result, &specs[i].resultlen, 0); if (gpg_err_code (ret) != specs[i].ret_expected) { printf ("agent_protect() returned `%i/%s'; expected `%i/%s'\n", |