aboutsummaryrefslogtreecommitdiffstats
path: root/g10/trustdb.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-02-24 23:37:18 +0000
committerDavid Shaw <[email protected]>2004-02-24 23:37:18 +0000
commita84fe549da551cfb8037b30dca10da8ea4e632e0 (patch)
treef41084ae0a4ca1ce4fc330598e349b9049dcc67f /g10/trustdb.c
parent(lock_pool) [_AIX]: Also set errno. (diff)
downloadgnupg-a84fe549da551cfb8037b30dca10da8ea4e632e0.tar.gz
gnupg-a84fe549da551cfb8037b30dca10da8ea4e632e0.zip
* plaintext.c: Copyright.
* encode.c (encode_simple): Show cipher with --verbose. * options.h, g10.c (main), keyedit.c (sign_keys): Add --ask-cert-level option to enable cert level prompts during sigs. Defaults to on. Simplify --default-cert-check-level to --default-cert-level. If ask-cert-level is off, or batch is on, use the default-cert-level as the cert level. * options.h, g10.c (main), trustdb.c (mark_usable_uid_certs): Simplify --min-cert-check-level to --min-cert-level.
Diffstat (limited to 'g10/trustdb.c')
-rw-r--r--g10/trustdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c
index ab3b12527..3156116f3 100644
--- a/g10/trustdb.c
+++ b/g10/trustdb.c
@@ -1382,7 +1382,7 @@ mark_usable_uid_certs (KBNODE keyblock, KBNODE uidnode,
if (!IS_UID_SIG(sig) && !IS_UID_REV(sig))
continue; /* we only look at these signature classes */
if(sig->sig_class>=0x11 && sig->sig_class<=0x13 &&
- sig->sig_class-0x10<opt.min_cert_check_level)
+ sig->sig_class-0x10<opt.min_cert_level)
continue;
if (!is_in_klist (klist, sig))
continue; /* no need to check it then */