diff options
author | Werner Koch <[email protected]> | 2008-04-08 11:04:16 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-04-08 11:04:16 +0000 |
commit | 97ec9aac2b306bd87f77c2a50813376f557e3d58 (patch) | |
tree | bd494a6312edfb8037daa9428be6bc249cbc7480 /g10/options.h | |
parent | Allow requesting TCP queries. (diff) | |
download | gnupg-97ec9aac2b306bd87f77c2a50813376f557e3d58.tar.gz gnupg-97ec9aac2b306bd87f77c2a50813376f557e3d58.zip |
Enhanced --auto-key-locate.
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/g10/options.h b/g10/options.h index fac05b6ed..91dddc9a2 100644 --- a/g10/options.h +++ b/g10/options.h @@ -235,7 +235,15 @@ struct keyring. */ struct akl { - enum {AKL_CERT, AKL_PKA, AKL_LDAP, AKL_KEYSERVER, AKL_SPEC} type; + enum { + AKL_NODEFAULT, + AKL_LOCAL, + AKL_CERT, + AKL_PKA, + AKL_LDAP, + AKL_KEYSERVER, + AKL_SPEC + } type; struct keyserver_spec *spec; struct akl *next; } *auto_key_locate; |