diff options
author | David Shaw <[email protected]> | 2006-03-08 02:40:42 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-03-08 02:40:42 +0000 |
commit | 90d8377276a654e30fa49bf2711df52e2b059e90 (patch) | |
tree | bc7212897b072d36d4b46373501c705ff3939062 /g10/options.h | |
parent | * NEWS: Note CERT retrieval. Tweak PKA and backsig language to match (diff) | |
download | gnupg-90d8377276a654e30fa49bf2711df52e2b059e90.tar.gz gnupg-90d8377276a654e30fa49bf2711df52e2b059e90.zip |
* options.h, mainproc.c (check_sig_and_print), gpg.c (main):
pka-lookups, not pka-lookup.
* options.h, gpg.c (main), keyedit.c [cmds], sig-check.c
(signature_check2): Rename "backsign" to "cross-certify" as a more
accurate name.
Diffstat (limited to 'g10/options.h')
-rw-r--r-- | g10/options.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/g10/options.h b/g10/options.h index 65e7cded5..bcef4550b 100644 --- a/g10/options.h +++ b/g10/options.h @@ -215,10 +215,13 @@ struct int disable_ccid; /* Disable the use of the internal CCID driver. */ #endif /*ENABLE_CARD_SUPPORT*/ - /* If set, require an 0x19 backsig to be present on signatures made - by signing subkeys. If not set, a missing backsig is not an - error (but an invalid backsig still is). */ - int require_backsigs; + struct + { + /* If set, require an 0x19 backsig to be present on signatures + made by signing subkeys. If not set, a missing backsig is not + an error (but an invalid backsig still is). */ + unsigned int require_cross_cert:1; + } flags; /* Linked list of ways to find a key if the key isn't on the local keyring. */ @@ -314,7 +317,7 @@ struct { #define VERIFY_SHOW_KEYSERVER_URLS (1<<4) #define VERIFY_SHOW_UID_VALIDITY (1<<5) #define VERIFY_SHOW_UNUSABLE_UIDS (1<<6) -#define VERIFY_PKA_LOOKUP (1<<7) +#define VERIFY_PKA_LOOKUPS (1<<7) #define VERIFY_PKA_TRUST_INCREASE (1<<8) #define KEYSERVER_USE_TEMP_FILES (1<<0) |