diff options
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; |