diff options
Diffstat (limited to 'dirmngr')
-rw-r--r-- | dirmngr/crlcache.c | 2 | ||||
-rw-r--r-- | dirmngr/misc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dirmngr/crlcache.c b/dirmngr/crlcache.c index b1e34b667..cd35335ce 100644 --- a/dirmngr/crlcache.c +++ b/dirmngr/crlcache.c @@ -1351,7 +1351,7 @@ cache_isvalid (ctrl_t ctrl, const char *issuer_hash, { log_error (_("WARNING: invalid cache record length for S/N ")); log_printf ("0x"); - log_printhex ("", sn, snlen); + log_printhex (sn, snlen, ""); } else if (opt.verbose) { diff --git a/dirmngr/misc.c b/dirmngr/misc.c index eef04ed83..ba47c99b2 100644 --- a/dirmngr/misc.c +++ b/dirmngr/misc.c @@ -284,7 +284,7 @@ dump_string (const char *string) else { log_printf ( "[ "); - log_printhex (NULL, string, strlen (string)); + log_printhex (string, strlen (string), NULL); log_printf ( " ]"); } } |