diff options
author | David Shaw <[email protected]> | 2006-02-22 23:37:23 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-02-22 23:37:23 +0000 |
commit | 1ae024ef81d108c68d00a96fca6f808b4a9c454d (patch) | |
tree | cf9ea77a36a9d3096eed336ba148a2426559245b /g10/gpgv.c | |
parent | * gpgkeys_hkp.c (get_name): A GETNAME query turns exact=on to cut down on (diff) | |
download | gnupg-1ae024ef81d108c68d00a96fca6f808b4a9c454d.tar.gz gnupg-1ae024ef81d108c68d00a96fca6f808b4a9c454d.zip |
* options.h, keyserver-internal.h, keyserver.c (keyserver_import_name),
getkey.c (free_akl, parse_auto_key_locate, get_pubkey_byname): The obvious
next step: allow arbitrary keyservers in the auto-key-locate list.
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r-- | g10/gpgv.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index 2f4563e2a..1644461ec 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -287,7 +287,10 @@ int keyserver_import_pka(const char *name,unsigned char *fpr) { return -1; } int -keyserver_import_name(const char *name) { return -1; } +keyserver_import_name(const char *name,struct keyserver_spec *spec) +{ + return -1; +} int keyserver_import_ldap(const char *name) { return -1; } |