mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01: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 9acbeac23668a1d0dabca27d7825430d76e095c2 Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
f71ed902de
commit
8eb3a1797a
@ -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…
x
Reference in New Issue
Block a user