diff options
author | Werner Koch <[email protected]> | 2023-03-10 09:52:43 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-03-10 10:24:48 +0000 |
commit | 56ca164684b69bcb20eb98a1adc70531c8991576 (patch) | |
tree | 981e54860b4f08f035ba61a01999d1453432d635 /sm/certchain.c | |
parent | agent: Try to SETREPEATOK if the pinentry supports it. (diff) | |
download | gnupg-56ca164684b69bcb20eb98a1adc70531c8991576.tar.gz gnupg-56ca164684b69bcb20eb98a1adc70531c8991576.zip |
dirmngr: Add command "GETINFO stats".
* dirmngr/server.c (cmd_getinfo): New sub-command "stats".
(dirmngr_status_helpf): Allow for a CTRL of NULL.
* dirmngr/certcache.c (cert_cache_print_stats): Add arg ctrl and use
dirmngr_status_helpf. Adjust all callers.
* dirmngr/domaininfo.c (domaininfo_print_stats): Ditto.
* sm/certchain.c (ask_marktrusted): Flush stdout before printing the
fingerprint.
Diffstat (limited to 'sm/certchain.c')
-rw-r--r-- | sm/certchain.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sm/certchain.c b/sm/certchain.c index cbb6e1127..7b782190b 100644 --- a/sm/certchain.c +++ b/sm/certchain.c @@ -122,6 +122,7 @@ do_list (int is_error, int listmode, estream_t fp, const char *format, ...) } else { + es_fflush (es_stdout); log_logv (is_error? GPGRT_LOGLVL_ERROR: GPGRT_LOGLVL_INFO, format, arg_ptr); log_printf ("\n"); @@ -1480,6 +1481,7 @@ ask_marktrusted (ctrl_t ctrl, ksba_cert_t cert, int listmode) int success = 0; fpr = gpgsm_get_fingerprint_string (cert, GCRY_MD_SHA1); + es_fflush (es_stdout); log_info (_("fingerprint=%s\n"), fpr? fpr : "?"); xfree (fpr); @@ -2277,6 +2279,7 @@ gpgsm_basic_cert_check (ctrl_t ctrl, ksba_cert_t cert) { if (!opt.quiet) { + es_fflush (es_stdout); log_info ("issuer certificate (#/"); gpgsm_dump_string (issuer); log_printf (") not found\n"); |