summaryrefslogtreecommitdiffstats
path: root/crypt-gpgme.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2021-06-13 14:16:06 -0700
committerKevin McCarthy <kevin@8t8.us>2021-06-13 14:16:06 -0700
commite1dfc2c43b275af813a38c8e3d6a2d6e30ba9a06 (patch)
treeafbf451aa4ed1205cdee42febf2797ec1a506bf9 /crypt-gpgme.c
parent9629d5d6933c1a1d450827c4c3046916bcf7269b (diff)
Fix getkeybyaddr() debug output.
Add a NONULL wrapper and a newline at the end.
Diffstat (limited to 'crypt-gpgme.c')
-rw-r--r--crypt-gpgme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypt-gpgme.c b/crypt-gpgme.c
index cf1d466c..7d437348 100644
--- a/crypt-gpgme.c
+++ b/crypt-gpgme.c
@@ -4732,8 +4732,8 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities,
if (!keys)
return NULL;
- dprint (5, (debugfile, "crypt_getkeybyaddr: looking for %s <%s>.",
- a->personal, a->mailbox));
+ dprint (5, (debugfile, "crypt_getkeybyaddr: looking for %s <%s>.\n",
+ NONULL (a->personal), NONULL (a->mailbox)));
for (k = keys; k; k = k->next)
{