summaryrefslogtreecommitdiffstats
path: root/kbx
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2021-02-25 17:02:49 +0100
committerWerner Koch <wk@gnupg.org>2021-02-25 17:02:49 +0100
commitc032066d6b6069b88f1a65f132594d5a1aa23647 (patch)
tree08c95fdc94c41bd707f95acffb505057496cb3be /kbx
parentscd:p15: Read out the access flags. (diff)
downloadgnupg2-c032066d6b6069b88f1a65f132594d5a1aa23647.tar.xz
gnupg2-c032066d6b6069b88f1a65f132594d5a1aa23647.zip
kbx: Log debug fixes
--
Diffstat (limited to 'kbx')
-rw-r--r--kbx/kbx-client-util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/kbx/kbx-client-util.c b/kbx/kbx-client-util.c
index f7477661f..bd71cf2ba 100644
--- a/kbx/kbx-client-util.c
+++ b/kbx/kbx-client-util.c
@@ -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));