diff options
| author | Werner Koch <[email protected]> | 1998-02-11 23:22:09 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 1998-02-11 23:22:09 +0000 |
| commit | bc5789665ae8c9f8fc3d02841cd6c9ade447a12a (patch) | |
| tree | a98aa9fdf58eaffecb38ce481606ee8536280fc8 /g10/pkclist.c | |
| parent | a couple of changes; but some parts are now broken (diff) | |
| download | gnupg-bc5789665ae8c9f8fc3d02841cd6c9ade447a12a.tar.gz gnupg-bc5789665ae8c9f8fc3d02841cd6c9ade447a12a.zip | |
bug fixes
Diffstat (limited to 'g10/pkclist.c')
| -rw-r--r-- | g10/pkclist.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index 411435f60..f123fc0d8 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -213,11 +213,13 @@ do_we_trust( PKT_public_cert *pkc, int trustlevel ) return 1; /* yes */ case TRUST_FULLY: - log_info("This key probably belongs to the owner\n"); + if( opt.verbose ) + log_info("This key probably belongs to the owner\n"); return 1; /* yes */ case TRUST_ULTIMATE: - log_info("Our own keys is always good.\n"); + if( opt.verbose ) + log_info("This key belongs to us (we have the secret key)\n"); return 1; /* yes */ default: BUG(); |
