mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpg: Fix just changed agent_get_s2k_count.
* g10/call-agent.c (agent_get_s2k_count): Actually return the count. -- The previous push was definitely a bit to hasty. Fixes-Commit: ec13b1c562e34c0fcbc7b848ab6dc187b79cf2c1 Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
ec13b1c562
commit
54f88afba4
@ -1502,10 +1502,10 @@ agent_get_s2k_count (void)
|
||||
log_error (_("problem with the agent: %s\n"), gpg_strerror (err));
|
||||
|
||||
/* Default to 65536 which was used up to 2.0.13. */
|
||||
return 65536;
|
||||
count = 65536;
|
||||
}
|
||||
|
||||
return err;
|
||||
return count;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user