mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-02 12:01:32 +01:00
kbx: Log debug fixes
--
This commit is contained in:
parent
d51a5ca108
commit
c032066d6b
@ -375,7 +375,8 @@ kbx_client_data_cmd (kbx_client_data_t kcd, const char *command,
|
||||
status_cb, status_cb_value);
|
||||
if (err)
|
||||
{
|
||||
if (gpg_err_code (err) != GPG_ERR_NOT_FOUND)
|
||||
if (gpg_err_code (err) != GPG_ERR_NOT_FOUND
|
||||
&& gpg_err_code (err) != GPG_ERR_NOTHING_FOUND)
|
||||
log_debug ("%s: finished command with error: %s\n",
|
||||
__func__, gpg_strerror (err));
|
||||
/* Fixme: On unexpected errors we need a way to cancel the
|
||||
@ -397,7 +398,8 @@ kbx_client_data_cmd (kbx_client_data_t kcd, const char *command,
|
||||
status_cb, status_cb_value);
|
||||
if (err)
|
||||
{
|
||||
if (gpg_err_code (err) != GPG_ERR_NOT_FOUND)
|
||||
if (gpg_err_code (err) != GPG_ERR_NOT_FOUND
|
||||
&& gpg_err_code (err) != GPG_ERR_NOTHING_FOUND)
|
||||
log_debug ("%s: finished command with error: %s\n",
|
||||
__func__, gpg_strerror (err));
|
||||
xfree (get_membuf (&mb, &len));
|
||||
|
@ -720,7 +720,7 @@ list_one_kinfo (card_info_t info, key_info_t kinfo,
|
||||
if (err)
|
||||
{
|
||||
if (gpg_err_code (err) != GPG_ERR_NO_PUBKEY)
|
||||
tty_fprintf (fp, " error ......: %s\n", gpg_strerror (err));
|
||||
tty_fprintf (fp, " used for ...: [%s]\n", gpg_strerror (err));
|
||||
goto leave;
|
||||
}
|
||||
for (kb = keyblock; kb; kb = kb->next)
|
||||
|
Loading…
x
Reference in New Issue
Block a user