diff options
| author | Werner Koch <[email protected]> | 2005-12-20 20:19:16 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2005-12-20 20:19:16 +0000 |
| commit | f1482aab4e70079bf0f1d7352f5f0d3c88ca9c90 (patch) | |
| tree | 44b4bd55eca5fc2f12978ed643bbac46116cd18e /g10/trustdb.c | |
| parent | * getkey.c (merge_selfsigs_main): All primary keys can certify. (diff) | |
| download | gnupg-f1482aab4e70079bf0f1d7352f5f0d3c88ca9c90.tar.gz gnupg-f1482aab4e70079bf0f1d7352f5f0d3c88ca9c90.zip | |
Finished PKA feature
Diffstat (limited to 'g10/trustdb.c')
| -rw-r--r-- | g10/trustdb.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c index bb5167ea9..cff55ec21 100644 --- a/g10/trustdb.c +++ b/g10/trustdb.c @@ -450,7 +450,12 @@ init_trustdb() } if(opt.verbose) - log_info(_("using %s trust model\n"),trust_model_string()); + { + log_info(_("using %s trust model\n"),trust_model_string()); + if (opt.pka_trust_increase) + log_info(_("PKA verification is allowed to" + " leverage trust to full\n")); + } } if(opt.trust_model==TM_PGP || opt.trust_model==TM_CLASSIC) @@ -2156,7 +2161,8 @@ validate_keys (int interactive) * here when needed */ if (!utk_list) { - log_info (_("no ultimately trusted keys found\n")); + if (!opt.quiet) + log_info (_("no ultimately trusted keys found\n")); goto leave; } |
