mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
gpg: Fix function prototype to match declaration.
* g10/test-stubs.c (keyserver_import_mbox): Fix prototype -- GnuPG-bug-id: 5393 Signed-off-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
parent
46efee8cb7
commit
426d82fcf1
@ -231,10 +231,14 @@ keyserver_import_wkd (ctrl_t ctrl, const char *name, unsigned int flags,
|
||||
}
|
||||
|
||||
int
|
||||
keyserver_import_mbox (const char *name,struct keyserver_spec *spec)
|
||||
keyserver_import_mbox (ctrl_t ctrl, const char *mbox, unsigned char **fpr,
|
||||
size_t *fprlen, struct keyserver_spec *keyserver)
|
||||
{
|
||||
(void)name;
|
||||
(void)spec;
|
||||
(void)ctrl;
|
||||
(void)mbox;
|
||||
(void)fpr;
|
||||
(void)fprlen;
|
||||
(void)keyserver;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user