mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
gpg: Fix skip function dummy parameter.
* g10/trustdb.c (search_skipfnc): Fix dummy argument
--
This is required due to the prototype change in
commit 9acbeac236
Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
f71ed902de
commit
8eb3a1797a
1 changed files with 2 additions and 2 deletions
|
@ -1559,9 +1559,9 @@ validate_one_keyblock (KBNODE kb, struct key_item *klist,
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
search_skipfnc (void *opaque, u32 *kid, PKT_user_id *dummy)
|
search_skipfnc (void *opaque, u32 *kid, int dummy_uid_no)
|
||||||
{
|
{
|
||||||
(void)dummy;
|
(void)dummy_uid_no;
|
||||||
return test_key_hash_table ((KeyHashTable)opaque, kid);
|
return test_key_hash_table ((KeyHashTable)opaque, kid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue